Home
last modified time | relevance | path

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

/third_party/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)
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_context.h64 #define BRW_PARAM_VALUE(param) ((uint32_t)(param) & 0x00ffffff) macro
66 #define BRW_PARAM_IMAGE_IDX(value) (BRW_PARAM_VALUE(value) >> 8)
67 #define BRW_PARAM_IMAGE_OFFSET(value)(BRW_PARAM_VALUE(value) & 0xf)
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_context.h68 #define BRW_PARAM_VALUE(param) ((uint32_t)(param) & 0x00ffffff) macro
70 #define BRW_PARAM_IMAGE_IDX(value) (BRW_PARAM_VALUE(value) >> 8)
71 #define BRW_PARAM_IMAGE_OFFSET(value)(BRW_PARAM_VALUE(value) & 0xf)