Home | History | Annotate | Download | only in freedreno

Lines Matching refs:psurf

50 	struct pipe_surface *psurf = &surface->base;
53 pipe_reference_init(&psurf->reference, 1);
54 pipe_resource_reference(&psurf->texture, ptex);
56 psurf->context = pctx;
57 psurf->format = surf_tmpl->format;
58 psurf->width = u_minify(ptex->width0, level);
59 psurf->height = u_minify(ptex->height0, level);
60 psurf->u.tex.level = level;
61 psurf->u.tex.first_layer = surf_tmpl->u.tex.first_layer;
62 psurf->u.tex.last_layer = surf_tmpl->u.tex.last_layer;
65 DBG("TODO: %ux%u", psurf->width, psurf->height);
71 fd_surface_destroy(struct pipe_context *pctx, struct pipe_surface *psurf)
73 pipe_resource_reference(&psurf->texture, NULL);
74 FREE(psurf);