diff options
author | Brian Paul <[email protected]> | 2010-04-20 10:00:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-20 10:00:03 -0600 |
commit | a2a01853f3f40b4ef8b3f01503391877960bdaee (patch) | |
tree | ffd8f8df1aeecc3bed2c799157fac10975094f1e /src/gallium/drivers/cell | |
parent | 36c9557cae78814b320768697eaccf3cf0e0ebae (diff) |
gallium: replace pipe_resource::_usage with pipe_resource::usage
Diffstat (limited to 'src/gallium/drivers/cell')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_texture.c b/src/gallium/drivers/cell/ppu/cell_texture.c index 8a379154d1b..d08334d892b 100644 --- a/src/gallium/drivers/cell/ppu/cell_texture.c +++ b/src/gallium/drivers/cell/ppu/cell_texture.c @@ -600,7 +600,7 @@ cell_user_buffer_create(struct pipe_screen *screen, buffer->base.screen = screen; buffer->base.format = PIPE_FORMAT_R8_UNORM; /* ?? */ buffer->base.bind = PIPE_BIND_TRANSFER_READ | bind_flags; - buffer->base._usage = PIPE_USAGE_IMMUTABLE; + buffer->base.usage = PIPE_USAGE_IMMUTABLE; buffer->base.flags = 0; buffer->base.width0 = bytes; buffer->base.height0 = 1; |