Error when initializing rayQuery with assignment

This commit is contained in:
Tobias Hector 2020-09-03 15:14:14 +01:00
parent 517f39eee4
commit ed7a097d19
4 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#version 460
#extension GL_EXT_ray_query : enable
void main () {
rayQueryEXT foo;
rayQueryEXT bar = foo;
}