i965/fs: Add missing pixel_x/y to brw_instruction_name().

Forgotten in commit 529064f6.
This commit is contained in:
Matt Turner
2015-04-24 16:23:46 -07:00
parent 51c61fff8f
commit 11d2305d7f

View File

@@ -524,6 +524,11 @@ brw_instruction_name(enum opcode op)
case FS_OPCODE_LINTERP:
return "linterp";
case FS_OPCODE_PIXEL_X:
return "pixel_x";
case FS_OPCODE_PIXEL_Y:
return "pixel_y";
case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
return "uniform_pull_const";
case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD_GEN7: