浏览代码

cell: disable calls to old gen code

tags/mesa_20090313
Brian Paul 17 年前
父节点
当前提交
fa0aa1443b
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4
    2
      src/gallium/drivers/cell/ppu/cell_pipe_state.c

+ 4
- 2
src/gallium/drivers/cell/ppu/cell_pipe_state.c 查看文件

@@ -48,8 +48,9 @@ cell_create_blend_state(struct pipe_context *pipe,
struct cell_blend_state *cb = MALLOC(sizeof(struct cell_blend_state));

(void) memcpy(cb, blend, sizeof(*blend));
#if 0
cell_generate_alpha_blend(cb);
#endif
return cb;
}

@@ -100,8 +101,9 @@ cell_create_depth_stencil_alpha_state(struct pipe_context *pipe,
MALLOC(sizeof(struct cell_depth_stencil_alpha_state));

(void) memcpy(cdsa, depth_stencil, sizeof(*depth_stencil));
#if 0
cell_generate_depth_stencil_test(cdsa);
#endif
return cdsa;
}


正在加载...
取消
保存