mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 02:33:15 +02:00
15 lines
240 B
C
15 lines
240 B
C
|
#ifndef GAL_GL_BUILTIN_SHADERS_H__
|
||
|
#define GAL_GL_BUILTIN_SHADERS_H__
|
||
|
|
||
|
namespace KIGFX {
|
||
|
|
||
|
namespace BUILTIN_SHADERS {
|
||
|
|
||
|
extern const char kicad_vertex_shader[];
|
||
|
extern const char kicad_fragment_shader[];
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|