mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
12 lines
181 B
GLSL
12 lines
181 B
GLSL
#version 450
|
|
|
|
layout(binding = 0) uniform sampler2D uSampler;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(float(textureQueryLevels(uSampler)));
|
|
}
|
|
|