mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 09:32:58 +00:00
11 lines
152 B
GLSL
11 lines
152 B
GLSL
#version 310 es
|
|
#extension GL_EXT_tessellation_shader : require
|
|
|
|
layout(cw, triangles, equal_spacing) in;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(1.0);
|
|
}
|
|
|