From 91e98efca508ea4455f415b9157452654476e1bc Mon Sep 17 00:00:00 2001 From: Kai Yao Date: Fri, 8 Oct 2021 14:51:14 -0700 Subject: Basic VK buffer barrier test (#1967) * Allow specifying entry point name in gfx unit test util * Add buffer barrier test --- tools/gfx-unit-test/existing-device-handle-test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/gfx-unit-test/existing-device-handle-test.cpp') diff --git a/tools/gfx-unit-test/existing-device-handle-test.cpp b/tools/gfx-unit-test/existing-device-handle-test.cpp index 2a4ffea26..047128bdd 100644 --- a/tools/gfx-unit-test/existing-device-handle-test.cpp +++ b/tools/gfx-unit-test/existing-device-handle-test.cpp @@ -19,7 +19,7 @@ namespace gfx_test ComPtr shaderProgram; slang::ProgramLayout* slangReflection; - GFX_CHECK_CALL_ABORT(loadShaderProgram(device, shaderProgram, "compute-smoke", slangReflection)); + GFX_CHECK_CALL_ABORT(loadComputeProgram(device, shaderProgram, "compute-smoke", "computeMain", slangReflection)); ComputePipelineStateDesc pipelineDesc = {}; pipelineDesc.program = shaderProgram.get(); -- cgit v1.2.3