Searched refs:ps_const_f (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/frontends/nine/ |
D | stateblock9.c | 50 This->state.ps_const_f = MALLOC(This->base.device->ps_const_size); in NineStateBlock9_ctor() 53 if (!This->state.vs_const_f || !This->state.ps_const_f || in NineStateBlock9_ctor() 82 FREE(state->ps_const_f); in NineStateBlock9_dtor() 90 if (This->state.changed.ps_const_f) { in NineStateBlock9_dtor() 91 for (r = This->state.changed.ps_const_f; r->next; r = r->next); in NineStateBlock9_dtor() 92 nine_range_pool_put_chain(pool, This->state.changed.ps_const_f, r); in NineStateBlock9_dtor() 202 for (r = mask->changed.ps_const_f; r; r = r->next) { in nine_state_copy_common() 203 memcpy(&dst->ps_const_f[r->bgn * 4], in nine_state_copy_common() 204 &src->ps_const_f[r->bgn * 4], in nine_state_copy_common() 426 struct nine_range *r = help->changed.ps_const_f; in nine_state_copy_common_all() [all …]
|
D | nine_state.h | 173 struct nine_range *ps_const_f; member 199 float *ps_const_f; member 229 BOOL ps_const_f; member 267 float *ps_const_f; member
|
D | device9.c | 443 This->state.ps_const_f = CALLOC(This->ps_const_size, 1); in NineDevice9_ctor() 444 This->context.ps_const_f = CALLOC(This->ps_const_size, 1); in NineDevice9_ctor() 447 !This->state.ps_const_f || !This->context.ps_const_f || in NineDevice9_ctor() 581 FREE(This->state.ps_const_f); in NineDevice9_dtor() 582 FREE(This->context.ps_const_f); in NineDevice9_dtor() 2458 nine_ranges_insert(&dst->changed.ps_const_f, 0, This->max_ps_const_f, in NineDevice9_CreateStateBlock() 3791 memcpy(&state->ps_const_f[StartRegister * 4], in NineDevice9_SetPixelShaderConstantF() 3793 Vector4fCount * 4 * sizeof(state->ps_const_f[0])); in NineDevice9_SetPixelShaderConstantF() 3795 nine_ranges_insert(&state->changed.ps_const_f, in NineDevice9_SetPixelShaderConstantF() 3803 if (!memcmp(&state->ps_const_f[StartRegister * 4], pConstantData, in NineDevice9_SetPixelShaderConstantF() [all …]
|
D | nine_state.c | 534 cb.user_buffer = context->ps_const_f; in prepare_ps_constants_userbuf() 537 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf() 542 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf() 607 context->changed.ps_const_f = 0; in prepare_ps_constants_userbuf() 1722 memcpy(&context->ps_const_f[StartRegister * 4], in CSMT_ITEM_NO_WAIT() 1726 context->changed.ps_const_f = TRUE; in CSMT_ITEM_NO_WAIT() 2074 for (r = src->changed.ps_const_f; r; r = r->next) in nine_context_apply_stateblock() 2076 &src->ps_const_f[r->bgn * 4], in nine_context_apply_stateblock() 2828 memset(state->ps_const_f, 0, device->ps_const_size); in nine_state_set_defaults() 2829 memset(context->ps_const_f, 0, device->ps_const_size); in nine_state_set_defaults()
|