summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon
diff options
context:
space:
mode:
authorGrazvydas Ignotas <[email protected]>2015-09-03 01:54:32 +0300
committerMarek Olšák <[email protected]>2015-09-03 18:06:51 +0200
commit722ce747436f5b9c79d1fa4a8c59eed2f9cb611b (patch)
tree38469f07e1e8d0778a091b1097701029c7c9b585 /src/gallium/drivers/radeon
parentccbc7952a4c125741f412ebc0278e17b65cf6fd7 (diff)
gallium/radeon: remove 'dirty' member from r600_atom
It's no longer used by both r600 and radeonsi now. Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r--src/gallium/drivers/radeon/r600_pipe_common.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h
index d22c230ea3c..534b987a2cc 100644
--- a/src/gallium/drivers/radeon/r600_pipe_common.h
+++ b/src/gallium/drivers/radeon/r600_pipe_common.h
@@ -316,8 +316,7 @@ struct r600_common_screen {
struct r600_atom {
void (*emit)(struct r600_common_context *ctx, struct r600_atom *state);
unsigned num_dw;
- unsigned short id; /* used by r600 only */
- bool dirty;
+ unsigned short id;
};
struct r600_so_target {