浏览代码

svga: remove TGSI_OPCODE_BREAKC instruction translation

While initially that opcode probably was meant for something along the
lines of sm3 break_comp it has never worked that way (not even the
argument count was right) and now the opcode has quite different
semantics so just remove it. (Discovered by Jose Fonseca)
tags/mesa-9.2-rc1
Roland Scheidegger 12 年前
父节点
当前提交
e8d1b26a82
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0
    1
      src/gallium/drivers/svga/svga_tgsi_insn.c

+ 0
- 1
src/gallium/drivers/svga/svga_tgsi_insn.c 查看文件

@@ -45,7 +45,6 @@ translate_opcode(
switch (opcode) {
case TGSI_OPCODE_ABS: return SVGA3DOP_ABS;
case TGSI_OPCODE_ADD: return SVGA3DOP_ADD;
case TGSI_OPCODE_BREAKC: return SVGA3DOP_BREAKC;
case TGSI_OPCODE_DP2A: return SVGA3DOP_DP2ADD;
case TGSI_OPCODE_DP3: return SVGA3DOP_DP3;
case TGSI_OPCODE_DP4: return SVGA3DOP_DP4;

正在加载...
取消
保存