https://github.com/halide/Halide
Raw File
Tip revision: c13b818c80d1d13d223ed9ba6fa147a8d1b0b6f3 authored by Steven Johnson on 13 February 2023, 18:15:41 UTC
Merge branch 'main' into srj/aligned-malloc-with-aligned-alloc
Tip revision: c13b818
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