Lines Matching defs:dst

403             float *dst = context->vs_lconstf_temp;
405 memcpy(dst, src, cb.buffer_size);
409 memcpy(&dst[p * 4], &lconstf->data[n * 4], c * 4 * sizeof(float));
413 cb.user_buffer = dst;
495 float *dst = context->vs_lconstf_temp;
497 memcpy(dst, src, cb.buffer_size);
501 memcpy(&dst[p * 4], &lconstf->data[n * 4], c * 4 * sizeof(float));
505 cb.user_buffer = dst;
584 float *dst = &context->ps_lconstf_temp[4 * 32];
590 d3dcolor_to_rgba(dst, context->rs[D3DRS_FOGCOLOR]);
592 dst[4] = asfloat(context->rs[D3DRS_FOGEND]);
593 dst[5] = 1.0f / (asfloat(context->rs[D3DRS_FOGEND]) - asfloat(context->rs[D3DRS_FOGSTART]));
595 dst[4] = asfloat(context->rs[D3DRS_FOGDENSITY]);
1326 struct pipe_resource *src, *dst;
1336 dst = context->texture[0].resource;
1338 if (!src || !dst)
1341 /* check dst is depth format. we know already for src */
1342 desc = util_format_description(dst->format);
1357 blit.dst.resource = dst;
1358 blit.dst.level = 0;
1359 blit.dst.format = dst->format;
1360 blit.dst.box.z = 0;
1361 blit.dst.box.depth = 1;
1362 blit.dst.box.x = 0;
1363 blit.dst.box.y = 0;
1364 blit.dst.box.width = dst->width0;
1365 blit.dst.box.height = dst->height0;
2470 ARG_BIND_REF(struct NineUnknown, dst),
2481 (void) dst;
2492 ARG_BIND_REF(struct NineUnknown, dst),
2498 (void) dst;
2522 ARG_BIND_REF(struct NineUnknown, dst),
2532 /* We just bind dst for the bind count */
2533 (void)dst;
3197 float *dst = device->state.vs_lconstf_temp;
3199 memcpy(dst, src, 8192 * sizeof(float[4]));
3203 memcpy(&dst[p * 4], &lconstf->data[n * 4], c * 4 * sizeof(float));
3207 cb.user_buffer = dst;