We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
while doing #224 I realized that OpCopy* commands aren't correctly supported.
OpCopy*
The following is accessing the OpVariable but because it goes through an OpCopyObject it doesn't notice it as accessed
OpVariable
OpCopyObject
accessed
%texture_image = OpVariable %ptr_texture UniformConstant %var_copy = OpCopyObject %ptr_texture %texture_image %load = OpLoad %10 %var_copy
The text was updated successfully, but these errors were encountered:
spencer-lunarg
No branches or pull requests
while doing #224 I realized that
OpCopy*
commands aren't correctly supported.The following is accessing the
OpVariable
but because it goes through anOpCopyObject
it doesn't notice it asaccessed
The text was updated successfully, but these errors were encountered: