glsl: Remove Signed Integer variables
This commit is contained in:
parent
5d2cd1551f
commit
73278ba985
8 changed files with 13 additions and 43 deletions
|
@ -103,7 +103,7 @@ void EmitShiftRightLogical64(EmitContext& ctx, IR::Inst& inst, std::string_view
|
|||
|
||||
void EmitShiftRightArithmetic32(EmitContext& ctx, IR::Inst& inst, std::string_view base,
|
||||
std::string_view shift) {
|
||||
ctx.AddS32("{}=int({})>>{};", inst, base, shift);
|
||||
ctx.AddU32("{}=int({})>>{};", inst, base, shift);
|
||||
}
|
||||
|
||||
void EmitShiftRightArithmetic64(EmitContext& ctx, IR::Inst& inst, std::string_view base,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue