aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/radeon_winsys.h
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2017-04-06 14:27:42 +0200
committerSamuel Pitoiset <[email protected]>2017-04-07 00:48:19 +0200
commitbedd89429ffda9d4a87da6f7e7ea2aa93b8420c4 (patch)
tree43664b07487e9b1b450922e3deadd7148fa21b19 /src/gallium/drivers/radeon/radeon_winsys.h
parent783924308546c327046d9accefd97bc5e8a7b932 (diff)
gallium/radeon: fix typo in radeon_winsys.h
Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Alex Deucher <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/radeon_winsys.h')
-rw-r--r--src/gallium/drivers/radeon/radeon_winsys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/radeon_winsys.h b/src/gallium/drivers/radeon/radeon_winsys.h
index a63485175d7..2e287c67eea 100644
--- a/src/gallium/drivers/radeon/radeon_winsys.h
+++ b/src/gallium/drivers/radeon/radeon_winsys.h
@@ -52,7 +52,7 @@ enum radeon_bo_flag { /* bitfield */
RADEON_FLAG_GTT_WC = (1 << 0),
RADEON_FLAG_CPU_ACCESS = (1 << 1),
RADEON_FLAG_NO_CPU_ACCESS = (1 << 2),
- RADEON_FLAG_HANDLE = (1 << 3), /* the buffer most not be suballocated */
+ RADEON_FLAG_HANDLE = (1 << 3), /* the buffer must not be suballocated */
RADEON_FLAG_SPARSE = (1 << 4),
};