mirror of https://github.com/alibaba/MNN.git
20 lines
428 B
C++
20 lines
428 B
C++
//
|
|
// GLUtils.h
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/01/31.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef GLUTILS_H
|
|
#define GLUTILS_H
|
|
#include "core/Macro.h"
|
|
#include <vector>
|
|
#include <string>
|
|
namespace MNN {
|
|
namespace OpenGL {
|
|
void setLocalSize(std::vector<std::string>& prefix, int* localSize, int setLocalSizeX, int setLocalSizeY, int setLocalSizeZ);
|
|
} // namespace OpenGL
|
|
} // namespace MNN
|
|
#endif
|