Home | History | Annotate | Download | only in vl

Lines Matching refs:tex

396                            unsigned first_output, struct ureg_dst tex)
420 ureg_MUL(shader, ureg_writemask(tex, TGSI_WRITEMASK_Z),
426 calc_addr(shader, o_r_addr, ureg_src(tex), ureg_src(t_start), true, false, idct->buffer_height / 4);
428 ureg_MOV(shader, ureg_writemask(o_r_addr[0], TGSI_WRITEMASK_Z), ureg_src(tex));
429 ureg_MOV(shader, ureg_writemask(o_r_addr[1], TGSI_WRITEMASK_Z), ureg_src(tex));
591 struct pipe_resource *tex;
596 tex = buffer->sampler_views.individual.source->texture;
598 buffer->fb_state_mismatch.width = tex->width0;
599 buffer->fb_state_mismatch.height = tex->height0;
603 surf_templ.format = tex->format;
604 surf_templ.u.tex.first_layer = 0;
605 surf_templ.u.tex.last_layer = 0;
607 buffer->fb_state_mismatch.cbufs[0] = idct->pipe->create_surface(idct->pipe, tex, &surf_templ);
609 buffer->viewport_mismatch.scale[0] = tex->width0;
610 buffer->viewport_mismatch.scale[1] = tex->height0;
630 struct pipe_resource *tex;
636 tex = buffer->sampler_views.individual.intermediate->texture;
638 buffer->fb_state.width = tex->width0;
639 buffer->fb_state.height = tex->height0;
643 surf_templ.format = tex->format;
644 surf_templ.u.tex.first_layer = i;
645 surf_templ.u.tex.last_layer = i;
648 idct->pipe, tex, &surf_templ);
654 buffer->viewport.scale[0] = tex->width0;
655 buffer->viewport.scale[1] = tex->height0;