diff options
author | Henri Verbeet <[email protected]> | 2011-07-18 00:42:27 +0200 |
---|---|---|
committer | Henri Verbeet <[email protected]> | 2011-07-18 01:36:07 +0200 |
commit | 3093cbaad9962df8ad35f2c1c42d6b1259381498 (patch) | |
tree | 0d5854a5ef2c43c783c6b2bdc3f401dc627278e0 /src/gallium/winsys/r600/drm/r600_drm.c | |
parent | 66f4ac988d5053c9782d1390541b04f4d9c50078 (diff) |
r600g: Get rid of leftover PB_USAGE_* flags.
These happen to work because their values are the same as the equivalent
PIPE_TRANSFER_* flags, but it's still misleading.
Signed-off-by: Henri Verbeet <[email protected]>
Diffstat (limited to 'src/gallium/winsys/r600/drm/r600_drm.c')
-rw-r--r-- | src/gallium/winsys/r600/drm/r600_drm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/r600/drm/r600_drm.c b/src/gallium/winsys/r600/drm/r600_drm.c index b5a4d928bf5..ab0afea5bf5 100644 --- a/src/gallium/winsys/r600/drm/r600_drm.c +++ b/src/gallium/winsys/r600/drm/r600_drm.c @@ -249,7 +249,7 @@ static int radeon_init_fence(struct radeon *radeon) if (radeon->fence_bo == NULL) { return -ENOMEM; } - radeon->cfence = r600_bo_map(radeon, radeon->fence_bo, PB_USAGE_UNSYNCHRONIZED, NULL); + radeon->cfence = r600_bo_map(radeon, radeon->fence_bo, PIPE_TRANSFER_UNSYNCHRONIZED, NULL); *radeon->cfence = 0; return 0; } |