Searched refs:lconstf (Results 1 – 6 of 6) sorted by relevance
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | vertexshader9.c | 105 This->lconstf = info.lconstf; in NineVertexShader9_ctor() 172 FREE(This->lconstf.data); in NineVertexShader9_dtor() 173 FREE(This->lconstf.ranges); in NineVertexShader9_dtor()
|
D | nine_shader.c | 505 struct sm1_local_const *lconstf; member 652 if (tx->lconstf[i].idx == index) { in tx_lconstf() 653 *src = tx->lconstf[i].reg; in tx_lconstf() 702 if (tx->lconstf[n].idx == index) in tx_set_lconstf() 706 tx->lconstf = REALLOC(tx->lconstf, in tx_set_lconstf() 707 (n + 0) * sizeof(tx->lconstf[0]), in tx_set_lconstf() 708 (n + 8) * sizeof(tx->lconstf[0])); in tx_set_lconstf() 709 assert(tx->lconstf); in tx_set_lconstf() 713 tx->lconstf[n].idx = index; in tx_set_lconstf() 714 tx->lconstf[n].reg = ureg_imm4f(tx->ureg, f[0], f[1], f[2], f[3]); in tx_set_lconstf() [all …]
|
D | pixelshader9.c | 103 assert(info.lconstf.data == NULL); in NinePixelShader9_ctor() 104 assert(info.lconstf.ranges == NULL); in NinePixelShader9_ctor()
|
D | vertexshader9.h | 58 struct nine_lconstf lconstf; member
|
D | nine_state.c | 399 if (context->vs->lconstf.ranges) { in prepare_vs_constants_userbuf_swvp() 400 const struct nine_lconstf *lconstf = &(context->vs->lconstf); in prepare_vs_constants_userbuf_swvp() local 401 const struct nine_range *r = lconstf->ranges; in prepare_vs_constants_userbuf_swvp() 409 memcpy(&dst[p * 4], &lconstf->data[n * 4], c * 4 * sizeof(float)); in prepare_vs_constants_userbuf_swvp() 490 if (context->vs->lconstf.ranges) { in prepare_vs_constants_userbuf() 492 const struct nine_lconstf *lconstf = &(context->vs->lconstf); in prepare_vs_constants_userbuf() local 493 const struct nine_range *r = lconstf->ranges; in prepare_vs_constants_userbuf() 501 memcpy(&dst[p * 4], &lconstf->data[n * 4], c * 4 * sizeof(float)); in prepare_vs_constants_userbuf() 3193 if (state->vs->lconstf.ranges) { in update_vs_constants_sw() 3194 const struct nine_lconstf *lconstf = &device->state.vs->lconstf; in update_vs_constants_sw() local [all …]
|
D | nine_shader.h | 89 struct nine_lconstf lconstf; /* out, NOTE: members to be free'd by user */ member
|