mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
c10191d132
Fixes Vulkan Khronos-internal issue 770.
18 lines
334 B
GLSL
18 lines
334 B
GLSL
#version 450
|
|
|
|
uniform textureBuffer tBuf;
|
|
uniform sampler s;
|
|
uniform samplerBuffer sBuf;
|
|
|
|
uniform utextureBuffer utBuf;
|
|
uniform itextureBuffer itBuf;
|
|
|
|
void main()
|
|
{
|
|
texelFetch(samplerBuffer(tBuf, s), 13);
|
|
texelFetch(sBuf, 13);
|
|
texelFetch(tBuf, 13);
|
|
texelFetch(utBuf, 13);
|
|
texelFetch(itBuf, 13);
|
|
}
|