Displaying 2 results from an estimated 2 matches for "handleinterp".
2014 Jul 25
1
[PATCH] nv50/ir: (trivial) initialize pointer to silence warning
...um/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp
index 14b6d68..7aa4728 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp
@@ -2139,7 +2139,7 @@ Converter::handleINTERP(Value *dst[4])
{
// Check whether the input is linear. All other attributes ignored.
Instruction *insn;
- Value *offset = NULL, *ptr = NULL, *w;
+ Value *offset = NULL, *ptr = NULL, *w = NULL;
bool linear;
operation op;
int c, mode;
--
1.8.4.5
2015 Feb 20
10
[PATCH 01/11] nvc0/ir: add emission of dadd/dmul/dmad opcodes, fix minmax
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
.../drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp | 66 +++++++++++++++++++++-
1 file changed, 63 insertions(+), 3 deletions(-)
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp
index dfb093c..e38a3b8 100644
---