浏览代码

nv50: put correct value into the TIC MAX_LEVEL field

tags/mesa-7.9-rc1
Christoph Bumiller 15 年前
父节点
当前提交
9e9839bd04
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1
    2
      src/gallium/drivers/nv50/nv50_tex.c

+ 1
- 2
src/gallium/drivers/nv50/nv50_tex.c 查看文件

@@ -152,8 +152,7 @@ nv50_tex_construct(struct nv50_sampler_view *view)

tic[6] = 0x03000000;

tic[7] = (view->pipe.last_level - view->pipe.first_level) << 4;
tic[7] |= view->pipe.first_level;
tic[7] = (view->pipe.last_level << 4) | view->pipe.first_level;

return TRUE;
}

正在加载...
取消
保存