https://github.com/halide/Halide
Raw File
Tip revision: 3a92a3f95b86b7babeed7403a330334758e1d644 authored by Andrew Adams on 20 January 2022, 17:25:20 UTC
Delete test that relies on features not backported
Tip revision: 3a92a3f
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