1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-09 04:13:48 +00:00

12 lines
182 B
GLSL

#version 450
layout(binding = 0) uniform sampler2D uTexture;
layout(location = 0) out ivec2 Size;
void main()
{
Size = textureSize(uTexture, 0) + textureSize(uTexture, 1);
}