mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
12 lines
249 B
Plaintext
12 lines
249 B
Plaintext
#version 450
|
|
#extension GL_AMD_shader_fragment_mask : require
|
|
|
|
layout(input_attachment_index = 0, set = 0, binding = 0) uniform subpassInputMS t;
|
|
|
|
void main()
|
|
{
|
|
vec4 test2 = fragmentFetchAMD(t, 4u);
|
|
uint testi2 = fragmentMaskFetchAMD(t);
|
|
}
|
|
|