mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
15 lines
383 B
Plaintext
15 lines
383 B
Plaintext
|
#version 450
|
||
|
#extension GL_EXT_samplerless_texture_functions : require
|
||
|
|
||
|
layout(set = 0, binding = 0) uniform texture2D uSampler2D;
|
||
|
layout(set = 0, binding = 0) uniform texture2DMS uSampler2DMS;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ivec2 b = textureSize(uSampler2D, 0);
|
||
|
ivec2 c = textureSize(uSampler2DMS);
|
||
|
int l1 = textureQueryLevels(uSampler2D);
|
||
|
int s0 = textureSamples(uSampler2DMS);
|
||
|
}
|
||
|
|