Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/frontends/nine/
Dstateblock9.c50 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 …]
Dnine_state.h175 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
Ddevice9.c485 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()
3940 memcpy(&state->ps_const_f[StartRegister * 4], in NineDevice9_SetPixelShaderConstantF()
3942 Vector4fCount * 4 * sizeof(state->ps_const_f[0])); in NineDevice9_SetPixelShaderConstantF()
3944 nine_ranges_insert(&state->changed.ps_const_f, in NineDevice9_SetPixelShaderConstantF()
3952 if (!memcmp(&state->ps_const_f[StartRegister * 4], pConstantData, in NineDevice9_SetPixelShaderConstantF()
[all …]
Dnine_state.c560 cb.user_buffer = context->ps_const_f; in prepare_ps_constants_userbuf()
563 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf()
568 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf()
633 context->changed.ps_const_f = 0; in prepare_ps_constants_userbuf()
1774 memcpy(&context->ps_const_f[StartRegister * 4], in CSMT_ITEM_NO_WAIT()
1778 context->changed.ps_const_f = TRUE; in CSMT_ITEM_NO_WAIT()
2120 for (r = src->changed.ps_const_f; r; r = r->next) in nine_context_apply_stateblock()
2122 &src->ps_const_f[r->bgn * 4], in nine_context_apply_stateblock()
2893 memset(state->ps_const_f, 0, device->ps_const_size); in nine_state_set_defaults()
2894 memset(context->ps_const_f, 0, device->ps_const_size); in nine_state_set_defaults()