Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/frontends/nine/
Dnine_shader.h81 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()
Dnine_state.h110 #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];
Dvertexshader9.h61 boolean bool_slots_used[NINE_MAX_CONST_B];
Dpixelshader9.h51 boolean bool_slots_used[NINE_MAX_CONST_B];
Ddevice9.c453 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 …]
Dnine_shader.c3648 tx->num_constb_allowed = NINE_MAX_CONST_B; in tx_ctor()
3691 for (i = 0; i < NINE_MAX_CONST_B; ++i) { in tx_ctor()
Dnine_state.c483 memcpy(bdst, context->vs_const_b, NINE_MAX_CONST_B * sizeof(BOOL)); in prepare_vs_constants_userbuf()