mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 12:00:05 +00:00
0464ff4515
Add support for GL_ARM_shader_core_builtins and SPV_ARM_core_builtins, including initial tests
13 lines
272 B
GLSL
13 lines
272 B
GLSL
#version 450
|
|
#extension GL_ARM_shader_core_builtins: enable
|
|
layout(set = 0, binding = 0, std430) buffer Output
|
|
{
|
|
uvec4 result;
|
|
};
|
|
|
|
void main (void)
|
|
{
|
|
uint temp = gl_WarpMaxIDARM;
|
|
result = uvec4(gl_CoreIDARM, gl_CoreCountARM, gl_CoreMaxIDARM, gl_WarpIDARM + temp);
|
|
}
|