HomeSort by relevance Sort by last modified time
    Searched refs:vs_const_i (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/gallium/state_trackers/nine/
stateblock9.c 51 This->state.vs_const_i = MALLOC(VS_CONST_I_SIZE(This->base.device));
54 !This->state.vs_const_i || !This->state.vs_const_b)
71 FREE(state->vs_const_i);
86 if (This->state.changed.vs_const_i) {
87 for (r = This->state.changed.vs_const_i; r->next; r = r->next);
88 nine_range_pool_put_chain(pool, This->state.changed.vs_const_i, r);
168 for (r = mask->changed.vs_const_i; r; r = r->next) {
169 memcpy(&dst->vs_const_i[r->bgn * 4],
170 &src->vs_const_i[r->bgn * 4],
399 memcpy(dst->vs_const_i, src->vs_const_i, VS_CONST_I_SIZE(device))
    [all...]
nine_state.h 173 struct nine_range *vs_const_i; member in struct:nine_state::__anon28365
193 int *vs_const_i; member in struct:nine_state
226 BOOL vs_const_i; member in struct:nine_context::__anon28366
257 int *vs_const_i; member in struct:nine_context
nine_state.c 399 if (context->changed.vs_const_i || context->changed.group & NINE_STATE_SWVP) {
404 cb.user_buffer = context->vs_const_i;
409 context->changed.vs_const_i = 0;
490 if (context->changed.vs_const_i || context->changed.group & NINE_STATE_SWVP) {
492 memcpy(idst, context->vs_const_i, NINE_MAX_CONST_I * sizeof(int[4]));
493 context->changed.vs_const_i = 0;
    [all...]
device9.c 388 This->state.vs_const_i = CALLOC(NINE_MAX_CONST_I_SWVP * sizeof(int[4]), 1);
389 This->context.vs_const_i = CALLOC(NINE_MAX_CONST_I_SWVP * sizeof(int[4]), 1);
397 This->state.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1);
398 This->context.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1);
410 !This->state.vs_const_i || !This->context.vs_const_i ||
578 FREE(This->state.vs_const_i);
579 FREE(This->context.vs_const_i);
    [all...]

Completed in 2988 milliseconds