Searched refs:NINE_MAX_CONST_B (Results 1 – 7 of 7) sorted by relevance
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | nine_shader.h | 81 boolean bool_slots_used[NINE_MAX_CONST_B]; 95 boolean (*bool_const_added)[NINE_MAX_CONST_B]; 245 BOOL const_b[NINE_MAX_CONST_B]; 274 for (i = 0; i < NINE_MAX_CONST_B; ++i) { in nine_shader_constant_combination_key()
|
D | nine_state.h | 110 #define NINE_MAX_CONST_B 16 macro 124 …vice) (device->may_swvp ? (NINE_MAX_CONST_B_SWVP * sizeof(BOOL)) : (NINE_MAX_CONST_B * sizeof(BOOL… 203 BOOL ps_const_b[NINE_MAX_CONST_B]; 271 BOOL ps_const_b[NINE_MAX_CONST_B];
|
D | vertexshader9.h | 61 boolean bool_slots_used[NINE_MAX_CONST_B];
|
D | pixelshader9.h | 51 boolean bool_slots_used[NINE_MAX_CONST_B];
|
D | device9.c | 453 max_const_ps = NINE_MAX_CONST_F_PS3 + (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor() 456 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor() 458 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor() 481 This->state.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1); in NineDevice9_ctor() 482 This->context.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1); in NineDevice9_ctor() 2497 …nges_insert(&dst->changed.vs_const_b, 0, This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B, in NineDevice9_CreateStateBlock() 3648 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_SetVertexShaderConstantB() 3650 …er_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_SetVertexShaderConstantB() 3689 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_GetVertexShaderConstantB() 3691 …er_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_GetVertexShaderConstantB() [all …]
|
D | nine_shader.c | 3648 tx->num_constb_allowed = NINE_MAX_CONST_B; in tx_ctor() 3691 for (i = 0; i < NINE_MAX_CONST_B; ++i) { in tx_ctor()
|
D | nine_state.c | 483 memcpy(bdst, context->vs_const_b, NINE_MAX_CONST_B * sizeof(BOOL)); in prepare_vs_constants_userbuf()
|