iris: drop param stuffs
authorKenneth Graunke <kenneth@whitecape.org>
Sat, 10 Nov 2018 00:50:19 +0000 (16:50 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:10 +0000 (10:26 -0800)
src/gallium/drivers/iris/iris_context.h

index 44040bf923de4ce1f34e042e53276b627398bf09..252e5b4980997062f84634ea914780f5294671e2 100644 (file)
@@ -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().
  */