Searched refs:ps_const_f (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/state_trackers/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() 70 FREE(state->ps_const_f); in NineStateBlock9_dtor() 78 if (This->state.changed.ps_const_f) { in NineStateBlock9_dtor() 79 for (r = This->state.changed.ps_const_f; r->next; r = r->next); in NineStateBlock9_dtor() 80 nine_range_pool_put_chain(pool, This->state.changed.ps_const_f, r); in NineStateBlock9_dtor() 183 for (r = mask->changed.ps_const_f; r; r = r->next) { in nine_state_copy_common() 184 memcpy(&dst->ps_const_f[r->bgn * 4], in nine_state_copy_common() 185 &src->ps_const_f[r->bgn * 4], in nine_state_copy_common() 405 struct nine_range *r = help->changed.ps_const_f; in nine_state_copy_common_all() [all …]
|
D | nine_state.h | 172 struct nine_range *ps_const_f; member 198 float *ps_const_f; member 228 BOOL ps_const_f; member 262 float *ps_const_f; member
|
D | device9.c | 403 This->state.ps_const_f = CALLOC(This->ps_const_size, 1); in NineDevice9_ctor() 404 This->context.ps_const_f = CALLOC(This->ps_const_size, 1); in NineDevice9_ctor() 407 !This->state.ps_const_f || !This->context.ps_const_f || in NineDevice9_ctor() 535 FREE(This->state.ps_const_f); in NineDevice9_dtor() 536 FREE(This->context.ps_const_f); in NineDevice9_dtor() 2324 nine_ranges_insert(&dst->changed.ps_const_f, 0, This->max_ps_const_f, in NineDevice9_CreateStateBlock() 3637 memcpy(&state->ps_const_f[StartRegister * 4], in NineDevice9_SetPixelShaderConstantF() 3639 Vector4fCount * 4 * sizeof(state->ps_const_f[0])); in NineDevice9_SetPixelShaderConstantF() 3641 nine_ranges_insert(&state->changed.ps_const_f, in NineDevice9_SetPixelShaderConstantF() 3649 if (!memcmp(&state->ps_const_f[StartRegister * 4], pConstantData, in NineDevice9_SetPixelShaderConstantF() [all …]
|
D | nine_state.c | 491 cb.user_buffer = context->ps_const_f; in prepare_ps_constants_userbuf() 494 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf() 499 int *idst = (int *)&context->ps_const_f[4 * device->max_ps_const_f]; in prepare_ps_constants_userbuf() 535 context->changed.ps_const_f = 0; in prepare_ps_constants_userbuf() 1647 memcpy(&context->ps_const_f[StartRegister * 4], in CSMT_ITEM_NO_WAIT() 1651 context->changed.ps_const_f = TRUE; in CSMT_ITEM_NO_WAIT() 2031 for (r = src->changed.ps_const_f; r; r = r->next) { 2032 memcpy(&context->ps_const_f[r->bgn * 4], 2033 &src->ps_const_f[r->bgn * 4], 2048 context->changed.ps_const_f = !!src->changed.ps_const_f; [all …]
|