mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
12 lines
131 B
GLSL
12 lines
131 B
GLSL
|
#version 140
|
||
|
|
||
|
out vec4 o;
|
||
|
|
||
|
uniform isamplerBuffer sampB;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
o.w = float(textureSize(sampB)) / 100.0;
|
||
|
}
|
||
|
|