1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-20 01:54:16 +01:00

[tests] Small tweaks

This commit is contained in:
Philip Rebohle 2018-09-14 08:44:35 +02:00
parent 922f0382f6
commit 93ce1e62b8
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -40,7 +40,6 @@ const std::string g_vertexShaderCode =
" result.color.y = buf[iid * 3].y;\n"
" result.color.z = buf[0].z;\n"
" result.color.w = 1.0f;\n"
" result.color = float4(1.0f, 1.0f, 1.0f, 1.0f);\n"
" return result;\n"
"}\n";
@ -60,10 +59,10 @@ const std::string g_hullShaderCode =
"hs_patch main_pc(InputPatch<vs_out, 3> ip) {\n"
" hs_patch ov;\n"
" ov.color = ip[0].color;\n"
" ov.tessEdge[0] = 1.0f;\n"
" ov.tessEdge[1] = 1.0f;\n"
" ov.tessEdge[2] = 1.0f;\n"
" ov.tessInner = 1.0f;\n"
" ov.tessEdge[0] = 4.0f;\n"
" ov.tessEdge[1] = 4.0f;\n"
" ov.tessEdge[2] = 4.0f;\n"
" ov.tessInner = 4.0f;\n"
" return ov;\n"
"}\n"
"[domain(\"tri\")]\n"