Searched refs:ps_const_f (Results 1 – 4 of 4) sorted by relevance
/third_party/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 | 175 struct nine_range *ps_const_f; member 201 float *ps_const_f; member 231 BOOL ps_const_f; member 269 float *ps_const_f; member
|
D | device9.c | 485 This->state.ps_const_f = CALLOC(This->ps_const_size, 1); in NineDevice9_ctor() 486 This->context.ps_const_f = CALLOC(This->ps_const_size, 1); in NineDevice9_ctor() 489 !This->state.ps_const_f || !This->context.ps_const_f || in NineDevice9_ctor() 625 FREE(This->state.ps_const_f); in NineDevice9_dtor() 626 FREE(This->context.ps_const_f); in NineDevice9_dtor() 2519 nine_ranges_insert(&dst->changed.ps_const_f, 0, This->max_ps_const_f, in NineDevice9_CreateStateBlock() 3938 memcpy(&state->ps_const_f[StartRegister * 4], in NineDevice9_SetPixelShaderConstantF() 3940 Vector4fCount * 4 * sizeof(state->ps_const_f[0])); in NineDevice9_SetPixelShaderConstantF() 3942 nine_ranges_insert(&state->changed.ps_const_f, in NineDevice9_SetPixelShaderConstantF() 3950 if (!memcmp(&state->ps_const_f[StartRegister * 4], pConstantData, in NineDevice9_SetPixelShaderConstantF() [all …]
|
D | nine_state.c | 561 cb.user_buffer = context->ps_const_f; in prepare_ps_constants_userbuf() 564 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf() 569 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf() 634 context->changed.ps_const_f = 0; in prepare_ps_constants_userbuf() 1778 memcpy(&context->ps_const_f[StartRegister * 4], in CSMT_ITEM_NO_WAIT() 1782 context->changed.ps_const_f = TRUE; in CSMT_ITEM_NO_WAIT() 2124 for (r = src->changed.ps_const_f; r; r = r->next) in nine_context_apply_stateblock() 2126 &src->ps_const_f[r->bgn * 4], in nine_context_apply_stateblock() 2886 memset(state->ps_const_f, 0, device->ps_const_size); in nine_state_set_defaults() 2887 memset(context->ps_const_f, 0, device->ps_const_size); in nine_state_set_defaults()
|