diff options
author | Kenneth Graunke <[email protected]> | 2018-11-09 16:50:19 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:10 -0800 |
commit | f1f84a1ae7f7e79b35660ac5b2ebb71cd52158b3 (patch) | |
tree | 719a606845c7800e0d88bce1f3f57b38221fb5df /src/gallium | |
parent | 1b5d35319e549882dc52d3a63d081f40e61cffe7 (diff) |
iris: drop param stuffs
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/iris/iris_context.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h index 44040bf923d..252e5b49809 100644 --- a/src/gallium/drivers/iris/iris_context.h +++ b/src/gallium/drivers/iris/iris_context.h @@ -246,15 +246,6 @@ struct iris_compiled_shader { uint8_t derived_data[0]; }; -enum iris_param_domain { - IRIS_PARAM_DOMAIN_BUILTIN, - IRIS_PARAM_DOMAIN_UNIFORM, -}; - -#define IRIS_PARAM(domain, val) (IRIS_PARAM_DOMAIN_##domain << 24 | (val)) -#define IRIS_PARAM_DOMAIN(param) ((uint32_t)(param) >> 24) -#define IRIS_PARAM_VALUE(param) ((uint32_t)(param) & 0x00ffffff) - /** * Constant buffer (UBO) information. See iris_set_const_buffer(). */ |