Home
last modified time | relevance | path

Searched refs:BRW_PARAM_VALUE (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_program.h47 #define BRW_PARAM_VALUE(param) ((uint32_t)(param) & 0x00ffffff) macro
51 #define BRW_PARAM_PARAMETER_IDX(param) (BRW_PARAM_VALUE(param) >> 2)
52 #define BRW_PARAM_PARAMETER_COMP(param) (BRW_PARAM_VALUE(param) & 0x3)
55 #define BRW_PARAM_UNIFORM_IDX(param) BRW_PARAM_VALUE(param)
58 #define BRW_PARAM_IMAGE_IDX(value) (BRW_PARAM_VALUE(value) >> 8)
59 #define BRW_PARAM_IMAGE_OFFSET(value) (BRW_PARAM_VALUE(value) & 0xf)
/external/mesa3d/src/gallium/drivers/iris/
Diris_context.h72 #define BRW_PARAM_VALUE(param) ((uint32_t)(param) & 0x00ffffff) macro
74 #define BRW_PARAM_IMAGE_IDX(value) (BRW_PARAM_VALUE(value) >> 8)
75 #define BRW_PARAM_IMAGE_OFFSET(value)(BRW_PARAM_VALUE(value) & 0xf)