summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
index 246e519b263..f95d515c3fc 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
@@ -215,6 +215,11 @@ static const char *shflOpStr[] =
"idx", "up", "down", "bfly"
};
+static const char *pixldOpStr[] =
+{
+ "count", "covmask", "offset", "cent_offset", "sampleid"
+};
+
static const char *DataTypeStr[] =
{
"-",
@@ -571,6 +576,10 @@ void Instruction::print() const
if (subOp < ARRAY_SIZE(shflOpStr))
PRINT("%s ", shflOpStr[subOp]);
break;
+ case OP_PIXLD:
+ if (subOp < ARRAY_SIZE(pixldOpStr))
+ PRINT("%s ", pixldOpStr[subOp]);
+ break;
default:
if (subOp)
PRINT("(SUBOP:%u) ", subOp);