aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/VkMakeCopyPipelineTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/VkMakeCopyPipelineTest.cpp')
-rw-r--r--tests/VkMakeCopyPipelineTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/VkMakeCopyPipelineTest.cpp b/tests/VkMakeCopyPipelineTest.cpp
index 77359cd539..cb3cbe9e30 100644
--- a/tests/VkMakeCopyPipelineTest.cpp
+++ b/tests/VkMakeCopyPipelineTest.cpp
@@ -55,11 +55,10 @@ public:
"layout(set = 1, binding = 0) uniform sampler2D uTextureSampler;"
"layout(location = 1) in half2 vTexCoord;"
- "layout(location = 0, index = 0) out half4 fsColorOut;"
"// Copy Program FS\n"
"void main() {"
- "fsColorOut = texture(uTextureSampler, vTexCoord);"
+ "sk_FragColor = texture(uTextureSampler, vTexCoord);"
"}";
SkSL::Program::Settings settings;