summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_context.h
diff options
context:
space:
mode:
authorNicolai Hähnle <[email protected]>2016-04-25 21:49:27 -0500
committerNicolai Hähnle <[email protected]>2016-06-01 22:37:23 +0200
commit979688a0273cb88d6a977dcd2de189bf8e96cd9a (patch)
treed22e3875703e3f54ec048cdb97d3de9b6a354c1c /src/mesa/state_tracker/st_context.h
parentbe82065fbe8095ce3146f7480b3202aca336aebf (diff)
st/mesa: rename pbo_upload to pbo
At the same time, rename members that are upload-specific to say so. Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r--src/mesa/state_tracker/st_context.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h
index 47d33013cbc..39ea501d93d 100644
--- a/src/mesa/state_tracker/st_context.h
+++ b/src/mesa/state_tracker/st_context.h
@@ -236,15 +236,15 @@ struct st_context
/* For gl(Compressed)Tex(Sub)Image */
struct {
struct pipe_rasterizer_state raster;
- struct pipe_blend_state blend;
+ struct pipe_blend_state upload_blend;
void *vs;
void *gs;
- void *fs;
- bool enabled;
+ void *upload_fs;
+ bool upload_enabled;
bool rgba_only;
- bool upload_layers;
+ bool layers;
bool use_gs;
- } pbo_upload;
+ } pbo;
/** for drawing with st_util_vertex */
struct pipe_vertex_element util_velems[3];