diff options
author | Marek Olšák <[email protected]> | 2012-02-21 17:49:29 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-02-23 20:29:55 +0100 |
commit | f841b8a833f32074c79724c66c85cdc7b48087e2 (patch) | |
tree | 147377bc9e441619f18c0b1c036bd2985549a5d0 | |
parent | bed7b4aa5ff7bab39e9aafe9d78c4ec63f5631bc (diff) |
r600g: define GROUP_FORCE_NEW_BLOCK in common header
Reviewed-by: Jerome Glisse <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
-rw-r--r-- | src/gallium/drivers/r600/evergreen_hw_context.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r600/r600_hw_context.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r600/r600_hw_context_priv.h | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/drivers/r600/evergreen_hw_context.c b/src/gallium/drivers/r600/evergreen_hw_context.c index 71edc2638f4..308224be352 100644 --- a/src/gallium/drivers/r600/evergreen_hw_context.c +++ b/src/gallium/drivers/r600/evergreen_hw_context.c @@ -30,8 +30,6 @@ #include "util/u_memory.h" #include <errno.h> -#define GROUP_FORCE_NEW_BLOCK 0 - static const struct r600_reg evergreen_config_reg_list[] = { {R_008958_VGT_PRIMITIVE_TYPE, 0}, }; diff --git a/src/gallium/drivers/r600/r600_hw_context.c b/src/gallium/drivers/r600/r600_hw_context.c index 56a83aeb621..40a851990ef 100644 --- a/src/gallium/drivers/r600/r600_hw_context.c +++ b/src/gallium/drivers/r600/r600_hw_context.c @@ -29,8 +29,6 @@ #include "util/u_memory.h" #include <errno.h> -#define GROUP_FORCE_NEW_BLOCK 0 - /* Get backends mask */ void r600_get_backend_mask(struct r600_context *ctx) { diff --git a/src/gallium/drivers/r600/r600_hw_context_priv.h b/src/gallium/drivers/r600/r600_hw_context_priv.h index 61009af1ab2..c32fc6386eb 100644 --- a/src/gallium/drivers/r600/r600_hw_context_priv.h +++ b/src/gallium/drivers/r600/r600_hw_context_priv.h @@ -44,6 +44,8 @@ #define BLOCK_FLAG_RESOURCE 32 #define REG_FLAG_FLUSH_CHANGE 64 +#define GROUP_FORCE_NEW_BLOCK 0 + struct r600_reg { unsigned offset; unsigned flags; |