Searched refs:vs_const_b (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/state_trackers/nine/ |
D | stateblock9.c | 52 This->state.vs_const_b = MALLOC(VS_CONST_B_SIZE(This->base.device)); in NineStateBlock9_ctor() 54 !This->state.vs_const_i || !This->state.vs_const_b) in NineStateBlock9_ctor() 72 FREE(state->vs_const_b); in NineStateBlock9_dtor() 90 if (This->state.changed.vs_const_b) { in NineStateBlock9_dtor() 91 for (r = This->state.changed.vs_const_b; r->next; r = r->next); in NineStateBlock9_dtor() 92 nine_range_pool_put_chain(pool, This->state.changed.vs_const_b, r); in NineStateBlock9_dtor() 173 for (r = mask->changed.vs_const_b; r; r = r->next) { in nine_state_copy_common() 174 memcpy(&dst->vs_const_b[r->bgn], in nine_state_copy_common() 175 &src->vs_const_b[r->bgn], in nine_state_copy_common() 400 memcpy(dst->vs_const_b, src->vs_const_b, VS_CONST_B_SIZE(device)); in nine_state_copy_common_all()
|
D | nine_state.h | 175 struct nine_range *vs_const_b; member 194 BOOL *vs_const_b; member 227 BOOL vs_const_b; member 258 BOOL *vs_const_b; member
|
D | nine_state.c | 412 if (context->changed.vs_const_b || context->changed.group & NINE_STATE_SWVP) { in prepare_vs_constants_userbuf_swvp() 417 cb.user_buffer = context->vs_const_b; in prepare_vs_constants_userbuf_swvp() 422 context->changed.vs_const_b = 0; in prepare_vs_constants_userbuf_swvp() 496 if (context->changed.vs_const_b || context->changed.group & NINE_STATE_SWVP) { in prepare_vs_constants_userbuf() 499 memcpy(bdst, context->vs_const_b, NINE_MAX_CONST_B * sizeof(BOOL)); in prepare_vs_constants_userbuf() 500 context->changed.vs_const_b = 0; in prepare_vs_constants_userbuf() 1702 context->vs_const_b[StartRegister + i] = pConstantData[i] ? bool_true : 0; in CSMT_ITEM_NO_WAIT() 1704 context->changed.vs_const_b = TRUE; in CSMT_ITEM_NO_WAIT() 2109 for (r = src->changed.vs_const_b; r; r = r->next) { 2110 memcpy(&context->vs_const_b[r->bgn], [all …]
|
D | device9.c | 390 This->state.vs_const_b = CALLOC(NINE_MAX_CONST_B_SWVP * sizeof(BOOL), 1); in NineDevice9_ctor() 391 This->context.vs_const_b = CALLOC(NINE_MAX_CONST_B_SWVP * sizeof(BOOL), 1); 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() 411 !This->state.vs_const_b || !This->context.vs_const_b) in NineDevice9_ctor() 580 FREE(This->state.vs_const_b); in NineDevice9_dtor() 581 FREE(This->context.vs_const_b); in NineDevice9_dtor() 2337 …nine_ranges_insert(&dst->changed.vs_const_b, 0, This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_… in NineDevice9_CreateStateBlock() 3407 if (!!state->vs_const_b[StartRegister + i] != !!pConstantData[i]) in NineDevice9_SetVertexShaderConstantB() 3415 state->vs_const_b[StartRegister + i] = pConstantData[i] ? bool_true : 0; in NineDevice9_SetVertexShaderConstantB() [all …]
|