mirror of https://github.com/AxioDL/metaforce.git
Fix shader compile fail
This commit is contained in:
parent
268f64b6c7
commit
0a062d0138
|
@ -63,12 +63,12 @@ static const char* MainPostGLSL =
|
|||
static const char* ThermalPostGLSL =
|
||||
"UBINDING2 uniform ThermalUniform\n"
|
||||
"{\n"
|
||||
" vec4 mulColor;\n"
|
||||
" vec4 tmulColor;\n"
|
||||
" vec4 addColor;\n"
|
||||
"};\n"
|
||||
"vec4 ThermalPostFunc(vec4 colorIn)\n"
|
||||
"{\n"
|
||||
" return vec4(texture(tex7, vtf.extTcgs[0]).rrr * mulColor.rgb + addColor.rgb, 1.0);\n"
|
||||
" return vec4(texture(tex7, vtf.extTcgs[0]).rrr * tmulColor.rgb + addColor.rgb, 1.0);\n"
|
||||
"}\n"
|
||||
"\n";
|
||||
|
||||
|
|
|
@ -62,12 +62,12 @@ static const char* MainPostHLSL =
|
|||
static const char* ThermalPostHLSL =
|
||||
"cbuffer ThermalUniform : register(b2)\n"
|
||||
"{\n"
|
||||
" float4 mulColor;\n"
|
||||
" float4 tmulColor;\n"
|
||||
" float4 addColor;\n"
|
||||
"};\n"
|
||||
"static float4 ThermalPostFunc(in VertToFrag vtf, float4 colorIn)\n"
|
||||
"{\n"
|
||||
" return float4(extTex7.Sample(samp, vtf.extTcgs[0]).rrr * mulColor.rgb + addColor.rgb, 1.0);\n"
|
||||
" return float4(extTex7.Sample(samp, vtf.extTcgs[0]).rrr * tmulColor.rgb + addColor.rgb, 1.0);\n"
|
||||
"}\n"
|
||||
"\n";
|
||||
|
||||
|
|
|
@ -62,12 +62,12 @@ static const char* MainPostMetal =
|
|||
static const char* ThermalPostMetal =
|
||||
"struct ThermalUniform\n"
|
||||
"{\n"
|
||||
" float4 mulColor;\n"
|
||||
" float4 tmulColor;\n"
|
||||
" float4 addColor;\n"
|
||||
"};\n"
|
||||
"static float4 ThermalPostFunc(thread VertToFrag& vtf, constant ThermalUniform& lu, texture2d<float> tex7, float4 colorIn)\n"
|
||||
"{\n"
|
||||
" return float4(tex7.sample(samp, vtf.extTcgs0).rrr * lu.mulColor.rgb + lu.addColor.rgb, 1.0);\n"
|
||||
" return float4(tex7.sample(samp, vtf.extTcgs0).rrr * lu.tmulColor.rgb + lu.addColor.rgb, 1.0);\n"
|
||||
"}\n"
|
||||
"\n";
|
||||
|
||||
|
|
Loading…
Reference in New Issue