https://github.com/halide/Halide
Raw File
Tip revision: 57ce5a49cd9ce7513c856b0e52843ab1071cc78b authored by Steven Johnson on 31 March 2023, 17:01:53 UTC
Move Xtensa from Feature to Arch
Tip revision: 57ce5a4
CodeGen_OpenGLCompute_Dev.h
#ifndef HALIDE_CODEGEN_OPENGLCOMPUTE_DEV_H
#define HALIDE_CODEGEN_OPENGLCOMPUTE_DEV_H

/** \file
 * Defines the code-generator for producing GLSL kernel code for OpenGL Compute.
 */

#include <memory>

namespace Halide {

struct Target;

namespace Internal {

struct CodeGen_GPU_Dev;

std::unique_ptr<CodeGen_GPU_Dev> new_CodeGen_OpenGLCompute_Dev(const Target &target);

}  // namespace Internal
}  // namespace Halide

#endif
back to top