mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-06 07:03:33 +00:00
[D3D12] Fix a typo in HLSL sqrt
This commit is contained in:
parent
14523145a2
commit
ed7f4ec4be
1 changed files with 1 additions and 1 deletions
|
|
@ -1767,7 +1767,7 @@ void HlslShaderTranslator::ProcessScalarAluInstruction(
|
|||
EmitSourceDepth("clip(-xe_ps);\n");
|
||||
break;
|
||||
case AluScalarOpcode::kSqrt:
|
||||
EmitSourceDepth("xe_ps = float(xe_src0.x);\n");
|
||||
EmitSourceDepth("xe_ps = sqrt(xe_src0.x);\n");
|
||||
break;
|
||||
case AluScalarOpcode::kMulsc0:
|
||||
case AluScalarOpcode::kMulsc1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue