RetroArch/deps/SPIRV-Cross/shaders-hlsl/vert/sampler-buffers.vert
aliaspider 5af5222249 update SPIRV-Cross
- https://github.com/KhronosGroup/SPIRV-Cross/commit/
66a407285e36a0f772e3209cb86ded6e3d900f6a
2018-01-26 13:48:17 +01:00

18 lines
474 B
GLSL

#version 450
layout(binding = 1) uniform samplerBuffer uFloatSampler;
layout(binding = 2) uniform isamplerBuffer uIntSampler;
layout(binding = 3) uniform usamplerBuffer uUintSampler;
vec4 sample_from_function(samplerBuffer s0, isamplerBuffer s1, usamplerBuffer s2)
{
return texelFetch(s0, 20) +
intBitsToFloat(texelFetch(s1, 40)) +
uintBitsToFloat(texelFetch(s2, 60));
}
void main()
{
gl_Position = sample_from_function(uFloatSampler, uIntSampler, uUintSampler);
}