mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 14:54:10 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
11 lines
239 B
GLSL
11 lines
239 B
GLSL
#version 450
|
|
#extension GL_AMD_shader_fragment_mask : require
|
|
|
|
layout(input_attachment_index = 0, binding = 0) uniform subpassInputMS t;
|
|
|
|
void main ()
|
|
{
|
|
vec4 test2 = fragmentFetchAMD(t, 4);
|
|
uint testi2 = fragmentMaskFetchAMD(t);
|
|
}
|