mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
13 lines
266 B
GLSL
13 lines
266 B
GLSL
#version 100
|
|
#extension GL_EXT_shader_texture_lod : require
|
|
precision mediump float;
|
|
precision highp int;
|
|
|
|
uniform mediump sampler2D tex;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[0] = texture2DLodEXT(tex, vec2(0.4000000059604644775390625, 0.60000002384185791015625), 0.0);
|
|
}
|
|
|