Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/frontends/nine/
Dnine_shader.h80 boolean int_slots_used[NINE_MAX_CONST_I];
94 boolean (*int_const_added)[NINE_MAX_CONST_I];
244 int const_i[NINE_MAX_CONST_I][4];
270 for (i = 0; i < NINE_MAX_CONST_I; ++i) { in nine_shader_constant_combination_key()
Dnine_state.h109 #define NINE_MAX_CONST_I 16 macro
120 NINE_MAX_CONST_I * 4 * sizeof(int))
123 …ce) (device->may_swvp ? (NINE_MAX_CONST_I_SWVP * sizeof(int[4])) : (NINE_MAX_CONST_I * sizeof(int[…
202 int ps_const_i[NINE_MAX_CONST_I][4];
270 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.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()
479 This->state.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1); in NineDevice9_ctor()
480 This->context.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1); in NineDevice9_ctor()
2495 …nges_insert(&dst->changed.vs_const_i, 0, This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I, in NineDevice9_CreateStateBlock()
3567 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_SetVertexShaderConstantI()
3569 …ssert(StartRegister + Vector4iCount <= (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_SetVertexShaderConstantI()
3613 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_GetVertexShaderConstantI()
3615 …ssert(StartRegister + Vector4iCount <= (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I), in NineDevice9_GetVertexShaderConstantI()
[all …]
Dnine_state.c476 memcpy(idst, context->vs_const_i, NINE_MAX_CONST_I * sizeof(int[4])); in prepare_vs_constants_userbuf()
482 uint32_t *bdst = (uint32_t *)&idst[4 * NINE_MAX_CONST_I]; in prepare_vs_constants_userbuf()
569 uint32_t *bdst = (uint32_t *)&idst[4 * NINE_MAX_CONST_I]; in prepare_ps_constants_userbuf()
Dnine_shader.c3647 tx->num_consti_allowed = NINE_MAX_CONST_I; in tx_ctor()
3681 for (i = 0; i < NINE_MAX_CONST_I; ++i) { in tx_ctor()