-
Notifications
You must be signed in to change notification settings - Fork 835
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GL_EXT_ray_query updates #2139
GL_EXT_ray_query updates #2139
Conversation
@neslimsah can you make an account and sign the CLA? Or, possibly have this come from someone who has done that? Thanks. |
the test case are raygeneration shader stage. should add graphics and compute shader stages test cases |
You mean graphics and compute shader stage test cases for rayQuery extention? Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In these test case, it would be better to use rayFlags to pass in the rayQueryInitializeEXT
gl_RayFlagsOpaqueEXT
gl_RayFlagsNoOpaqueEXT
gl_RayFlagsSkipClosestHitShaderEXT
than numerical value.
I see bots are reporting:
We will need to know why there are only 2 checks. Travis CI, for example, did not run. I see a change to allow 30 minutes, but hopefully that's actually not the point. Some bot runs occasionally fail, due to timeouts, where it appears some part of the process hung. But, I'm not sure now what the current situation is. |
@Tobski @neslimsah : rayQuery should be passed by reference even to user functions similar to samplers right? |
I think this is correct? The "rayQuery" itself is a reference. It's a bit weird but I think it's consistent with how we've defined SPIR-V (which is also weird because reasons...). I could be missing something though? |
I re-reviewed the whole thing. I only had one nit/question/desired-improvement about the odd Modulo that, I'm okay with this change, but see there might be some open questions you still want to resolve. After answering my |
@johnkslang looks like all issues have been addressed and is passing now, can we get it merged? Thanks. |
My question was not resolved and i have filed issue #2150 to discuss/resolve there |
rayQuery extension updates.