diff options
author | Younes Manton <[email protected]> | 2008-12-06 15:45:00 -0500 |
---|---|---|
committer | Younes Manton <[email protected]> | 2009-01-10 13:52:05 -0500 |
commit | 7289c388f442fe532de52058f9167bc331920b1a (patch) | |
tree | 6a3a26cd688109725705ebe38abad50e59d59243 /src/gallium/drivers/nv40/nv40_miptree.c | |
parent | 0e1301ec8f7bc865b8a81214928e5267393cb8e7 (diff) |
nouveau: Use PIPE_BUFFER_USAGE_CPU_* instead of custom.
Diffstat (limited to 'src/gallium/drivers/nv40/nv40_miptree.c')
-rw-r--r-- | src/gallium/drivers/nv40/nv40_miptree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv40/nv40_miptree.c b/src/gallium/drivers/nv40/nv40_miptree.c index 5121434b542..00ce6be985a 100644 --- a/src/gallium/drivers/nv40/nv40_miptree.c +++ b/src/gallium/drivers/nv40/nv40_miptree.c @@ -93,7 +93,7 @@ nv40_miptree_create(struct pipe_screen *pscreen, const struct pipe_texture *pt) } if (pt->tex_usage & PIPE_TEXTURE_USAGE_DYNAMIC) - buf_usage |= NOUVEAU_BUFFER_USAGE_CPU; + buf_usage |= PIPE_BUFFER_USAGE_CPU_READ_WRITE; nv40_miptree_layout(mt); |