Signed-off-by: Samuel Pitoiset <samuel.pitoi...@gmail.com> --- src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp index 122245c..7d8549a 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp @@ -221,6 +221,11 @@ static const char *pixldOpStr[] = "count", "covmask", "offset", "cent_offset", "sampleid" }; +static const char *rcprsqOpStr[] = +{ + "", "64h" +}; + static const char *DataTypeStr[] = { "-", @@ -581,6 +586,11 @@ void Instruction::print() const if (subOp < ARRAY_SIZE(pixldOpStr)) PRINT("%s ", pixldOpStr[subOp]); break; + case OP_RCP: + case OP_RSQ: + if (subOp < ARRAY_SIZE(rcprsqOpStr)) + PRINT("%s ", rcprsqOpStr[subOp]); + break; default: if (subOp) PRINT("(SUBOP:%u) ", subOp); -- 2.8.0 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev