mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
i965/drm: Use bools for a few flags.
These one bit values are booleans. Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
44ecbbebe2
commit
754b961f38
1 changed files with 2 additions and 2 deletions
|
|
@ -109,8 +109,8 @@ struct brw_bufmgr {
|
|||
struct hash_table *name_table;
|
||||
struct hash_table *handle_table;
|
||||
|
||||
unsigned int has_llc:1;
|
||||
unsigned int bo_reuse:1;
|
||||
bool has_llc:1;
|
||||
bool bo_reuse:1;
|
||||
};
|
||||
|
||||
static int bo_set_tiling_internal(struct brw_bo *bo, uint32_t tiling_mode,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue