First Commit
This commit is contained in:
12
externals/glslang/Test/spv.ARMCoreBuiltIns.vert
vendored
Normal file
12
externals/glslang/Test/spv.ARMCoreBuiltIns.vert
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user