search for: c13c565

Displaying 1 result from an estimated 1 matches for "c13c565".

Did you mean: 133565
2015 Jan 04
0
[PATCH] nv50/ir: Add sat modifier for mul
...else { emitForm_MUL(i); if (neg) code[0] |= 0x8000; + if (i->saturate) + code[0] |= 1 << 8; } } diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp index 3694209..c13c565 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp @@ -84,7 +84,7 @@ static const struct opProperties _initProps[] = // neg abs not sat c[] s[], a[], imm { OP_ADD, 0x3, 0x0, 0x0, 0x8, 0...