mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 09:32:58 +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);
|
|
}
|