projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #2913 from greg-lunarg/i2905
[platform/upstream/glslang.git]
/
Test
/
spv.ext.RayCallable.rcall
1
#version 460
2
#extension GL_EXT_ray_tracing : enable
3
layout(location = 0) callableDataEXT vec4 data0;
4
layout(location = 1) callableDataInEXT dataBlock {
5
uint data1;
6
};
7
void main()
8
{
9
uvec3 id = gl_LaunchIDEXT;
10
uvec3 size = gl_LaunchSizeEXT;
11
data1 = 256U;
12
executeCallableEXT(2,1);
13
}