mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
12 lines
320 B
Plaintext
12 lines
320 B
Plaintext
#version 450
|
|
#extension GL_AMD_shader_ballot : require
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void main()
|
|
{
|
|
float addInvocations = addInvocationsNonUniformAMD(0.0);
|
|
int minInvocations = minInvocationsNonUniformAMD(1);
|
|
uint maxInvocations = uint(maxInvocationsNonUniformAMD(4));
|
|
}
|
|
|