diff options
| author | Darren Wihandi <65404740+fairywreath@users.noreply.github.com> | 2025-03-19 17:53:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-19 21:53:57 +0000 |
| commit | 404e95cdd02830ba0fb215081e826025609c4d14 (patch) | |
| tree | 4f68e2476a29372c385329e709719f2f51e3055d /tests | |
| parent | 155e0804edbc9e7175cb0a6ed60d3daff0ba5e01 (diff) | |
Output SPV_KHR_compute_shader_derivatives extension string instead of the NV extension (#6641)
* Output SPV_KHR_compute_shader_derivatives instead of the NV extension
* add alias for nv extension
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/glsl-intrinsic/compute-derivative/intrinsic-derivative-function-in-compute.slang | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/glsl-intrinsic/compute-derivative/intrinsic-derivative-function-in-compute.slang b/tests/glsl-intrinsic/compute-derivative/intrinsic-derivative-function-in-compute.slang index 1c9152969..6d05213e5 100644 --- a/tests/glsl-intrinsic/compute-derivative/intrinsic-derivative-function-in-compute.slang +++ b/tests/glsl-intrinsic/compute-derivative/intrinsic-derivative-function-in-compute.slang @@ -12,14 +12,14 @@ //TEST:SIMPLE(filecheck=CHECK_SPV_QUAD_C): -allow-glsl -stage compute -entry computeMain -target spirv -DQUAD -DCOMPUTE // CHECK_SPV_QUAD_C: DerivativeGroupQuads{{NV|KHR}} // CHECK_SPV_QUAD_C-NOT: DerivativeGroupQuads{{NV|KHR}} -// CHECK_SPV_QUAD_C: "SPV_NV_compute_shader_derivatives" -// CHECK_SPV_QUAD_C-NOT: "SPV_NV_compute_shader_derivatives" +// CHECK_SPV_QUAD_C: "SPV_KHR_compute_shader_derivatives" +// CHECK_SPV_QUAD_C-NOT: "SPV_KHR_compute_shader_derivatives" //TEST:SIMPLE(filecheck=CHECK_SPV_LINEAR_C): -allow-glsl -stage compute -entry computeMain -target spirv -DLINEAR -DCOMPUTE // CHECK_SPV_LINEAR_C: DerivativeGroupLinear{{NV|KHR}} // CHECK_SPV_LINEAR_C-NOT: DerivativeGroupLinear{{NV|KHR}} -// CHECK_SPV_LINEAR_C: "SPV_NV_compute_shader_derivatives" -// CHECK_SPV_LINEAR_C-NOT: "SPV_NV_compute_shader_derivatives" +// CHECK_SPV_LINEAR_C: "SPV_KHR_compute_shader_derivatives" +// CHECK_SPV_LINEAR_C-NOT: "SPV_KHR_compute_shader_derivatives" //TEST:SIMPLE(filecheck=CHECK_HLSL_C): -allow-glsl -stage compute -entry computeMain -target hlsl -DCOMPUTE // CHECK_HLSL_C: computeMain( @@ -29,11 +29,11 @@ //TEST:SIMPLE(filecheck=CHECK_SPV_QUAD_F): -allow-glsl -stage fragment -entry computeMain -target spirv -DQUAD // CHECK_SPV_QUAD_F-NOT: DerivativeGroupQuads{{NV|KHR}} -// CHECK_SPV_QUAD_F-NOT: "SPV_NV_compute_shader_derivatives" +// CHECK_SPV_QUAD_F-NOT: "SPV_KHR_compute_shader_derivatives" //TEST:SIMPLE(filecheck=CHECK_SPV_LINEAR_F): -allow-glsl -stage fragment -entry computeMain -target spirv -DLINEAR // CHECK_SPV_LINEAR_F-NOT: DerivativeGroupLinear{{NV|KHR}} -// CHECK_SPV_LINEAR_F-NOT: "SPV_NV_compute_shader_derivatives" +// CHECK_SPV_LINEAR_F-NOT: "SPV_KHR_compute_shader_derivatives" //TEST:SIMPLE(filecheck=CHECK_GLSL_QUAD_F): -allow-glsl -stage fragment -entry computeMain -target glsl // CHECK_GLSL_QUAD_F-NOT: GL_NV_compute_shader_derivatives |
