diff options
author | Marek Olšák <[email protected]> | 2012-02-24 17:17:57 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-02-27 02:03:23 +0100 |
commit | b85fc0ac7e9795b773edad22e20eb3270f4909bd (patch) | |
tree | c381dadc3f38cc223952f89e612104bc57961e83 /src/gallium/drivers/r600/r600_pipe.h | |
parent | 81c04848625182c51d89c91f34ea6ab51d9ed090 (diff) |
r600g: move initialization of use_surface flag into screen_create
Also change the type to bool and give it a less ambiguous name.
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 8a4731d7e1f..bb6f2416aa1 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -131,7 +131,7 @@ struct r600_screen { struct r600_pipe_fences fences; unsigned num_contexts; - unsigned use_surface; + bool use_surface_alloc; /* for thread-safe write accessing to num_contexts */ pipe_mutex mutex_num_contexts; |