Home
last modified time | relevance | path

Searched refs:NINE_MAX_CONST_B (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/frontends/nine/
Dnine_shader.h80 boolean bool_slots_used[NINE_MAX_CONST_B];
94 boolean (*bool_const_added)[NINE_MAX_CONST_B];
244 BOOL const_b[NINE_MAX_CONST_B];
273 for (i = 0; i < NINE_MAX_CONST_B; ++i) { in nine_shader_constant_combination_key()
Dnine_state.h108 #define NINE_MAX_CONST_B 16 macro
122 …vice) (device->may_swvp ? (NINE_MAX_CONST_B_SWVP * sizeof(BOOL)) : (NINE_MAX_CONST_B * sizeof(BOOL…
201 BOOL ps_const_b[NINE_MAX_CONST_B];
269 BOOL ps_const_b[NINE_MAX_CONST_B];
Dvertexshader9.h61 boolean bool_slots_used[NINE_MAX_CONST_B];
Dpixelshader9.h51 boolean bool_slots_used[NINE_MAX_CONST_B];
Ddevice9.c411 max_const_ps = NINE_MAX_CONST_F_PS3 + (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor()
414 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor()
416 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor()
439 This->state.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1); in NineDevice9_ctor()
440 This->context.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1); in NineDevice9_ctor()
2436 …nges_insert(&dst->changed.vs_const_b, 0, This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B, in NineDevice9_CreateStateBlock()
3517 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_SetVertexShaderConstantB()
3519 …er_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_SetVertexShaderConstantB()
3558 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_GetVertexShaderConstantB()
3560 …er_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_GetVertexShaderConstantB()
[all …]
Dnine_shader.c3620 tx->num_constb_allowed = NINE_MAX_CONST_B; in tx_ctor()
3662 for (i = 0; i < NINE_MAX_CONST_B; ++i) { in tx_ctor()
Dnine_state.c457 memcpy(bdst, context->vs_const_b, NINE_MAX_CONST_B * sizeof(BOOL)); in prepare_vs_constants_userbuf()