mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 06:40:14 +00:00
9 lines
139 B
GLSL
9 lines
139 B
GLSL
#version 450
|
|||
#extension GL_EXT_fragment_shading_rate : require
|
|||
|
|||
void main()
|
|||
{
|
|||
gl_PrimitiveShadingRateEXT = 3;
|
|||
gl_Position = vec4(1.0);
|
|||
}
|