diff --git a/Source/Core/VideoCommon/UberShaderPixel.cpp b/Source/Core/VideoCommon/UberShaderPixel.cpp index 4e760408c5..0ba299260f 100644 --- a/Source/Core/VideoCommon/UberShaderPixel.cpp +++ b/Source/Core/VideoCommon/UberShaderPixel.cpp @@ -654,13 +654,19 @@ ShaderCode GenPixelShader(APIType ApiType, const ShaderHostConfig& host_config, if (early_depth && host_config.backend_early_z) out.Write("[earlydepthstencil]\n"); - out.Write("void main(\n" - " out float4 ocol0 : SV_Target0,\n" - " out float4 ocol1 : SV_Target1,\n" - " %s\n", - per_pixel_depth ? "\n out float depth : SV_Depth," : ""); + out.Write("void main(\n"); + if (uid_data->uint_output) + { + out.Write(" out uint4 ocol0 : SV_Target,\n"); + } + else + { + out.Write(" out float4 ocol0 : SV_Target0,\n" + " out float4 ocol1 : SV_Target1,\n"); + } + if (per_pixel_depth) + out.Write(" out float depth : SV_Depth,\n"); out.Write(" in float4 rawpos : SV_Position,\n"); - out.Write(" in %s float4 colors_0 : COLOR0,\n", GetInterpolationQualifier(msaa, ssaa)); out.Write(" in %s float4 colors_1 : COLOR1", GetInterpolationQualifier(msaa, ssaa)); @@ -1186,14 +1192,14 @@ ShaderCode GenPixelShader(APIType ApiType, const ShaderHostConfig& host_config, out.Write(" else\n" " ocol0.a = float(TevResult.a >> 2) / 63.0;\n" " \n"); - } - if (use_dual_source) - { - out.Write(" // Dest alpha override (dual source blending)\n" - " // Colors will be blended against the alpha from ocol1 and\n" - " // the alpha from ocol0 will be written to the framebuffer.\n" - " ocol1 = float4(0.0, 0.0, 0.0, float(TevResult.a) / 255.0);\n"); + if (use_dual_source) + { + out.Write(" // Dest alpha override (dual source blending)\n" + " // Colors will be blended against the alpha from ocol1 and\n" + " // the alpha from ocol0 will be written to the framebuffer.\n" + " ocol1 = float4(0.0, 0.0, 0.0, float(TevResult.a) / 255.0);\n"); + } } if (bounding_box)