Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/state_trackers/nine/
Dnine_state.h107 #define NINE_MAX_CONST_B 16 macro
121 …vice) (device->may_swvp ? (NINE_MAX_CONST_B_SWVP * sizeof(BOOL)) : (NINE_MAX_CONST_B * sizeof(BOOL…
200 BOOL ps_const_b[NINE_MAX_CONST_B];
264 BOOL ps_const_b[NINE_MAX_CONST_B];
Ddevice9.c371 max_const_ps = NINE_MAX_CONST_F_PS3 + (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor()
374 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor()
376 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); in NineDevice9_ctor()
399 This->state.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1); in NineDevice9_ctor()
400 This->context.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1); in NineDevice9_ctor()
2299 …nges_insert(&dst->changed.vs_const_b, 0, This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B, in NineDevice9_CreateStateBlock()
3362 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_SetVertexShaderConstantB()
3364 …er_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_SetVertexShaderConstantB()
3402 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_GetVertexShaderConstantB()
3404 …er_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B), in NineDevice9_GetVertexShaderConstantB()
[all …]
Dnine_state.c451 memcpy(bdst, context->vs_const_b, NINE_MAX_CONST_B * sizeof(BOOL)); in prepare_vs_constants_userbuf()
Dnine_shader.c3558 tx->num_constb_allowed = NINE_MAX_CONST_B; in nine_translate_shader()