Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/frontends/nine/
Dnine_shader.h79 boolean int_slots_used[NINE_MAX_CONST_I];
93 boolean (*int_const_added)[NINE_MAX_CONST_I];
243 int const_i[NINE_MAX_CONST_I][4];
269 for (i = 0; i < NINE_MAX_CONST_I; ++i) { in nine_shader_constant_combination_key()
Dnine_state.h107 #define NINE_MAX_CONST_I 16 macro
118 NINE_MAX_CONST_I * 4 * sizeof(int))
121 …ce) (device->may_swvp ? (NINE_MAX_CONST_I_SWVP * sizeof(int[4])) : (NINE_MAX_CONST_I * sizeof(int[…
200 int ps_const_i[NINE_MAX_CONST_I][4];
268 int ps_const_i[NINE_MAX_CONST_I][4];
Dvertexshader9.h60 boolean int_slots_used[NINE_MAX_CONST_I];
Dpixelshader9.h50 boolean int_slots_used[NINE_MAX_CONST_I];
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()
437 This->state.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1); in NineDevice9_ctor()
438 This->context.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1); in NineDevice9_ctor()
2434 …nges_insert(&dst->changed.vs_const_i, 0, This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I, in NineDevice9_CreateStateBlock()
3436 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_SetVertexShaderConstantI()
3438 …ssert(StartRegister + Vector4iCount <= (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_SetVertexShaderConstantI()
3482 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_GetVertexShaderConstantI()
3484 …ssert(StartRegister + Vector4iCount <= (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_GetVertexShaderConstantI()
[all …]
Dnine_state.c450 memcpy(idst, context->vs_const_i, NINE_MAX_CONST_I * sizeof(int[4])); in prepare_vs_constants_userbuf()
456 uint32_t *bdst = (uint32_t *)&idst[4 * NINE_MAX_CONST_I]; in prepare_vs_constants_userbuf()
543 uint32_t *bdst = (uint32_t *)&idst[4 * NINE_MAX_CONST_I]; in prepare_ps_constants_userbuf()
Dnine_shader.c3619 tx->num_consti_allowed = NINE_MAX_CONST_I; in tx_ctor()
3652 for (i = 0; i < NINE_MAX_CONST_I; ++i) { in tx_ctor()