Home | History | Annotate | Download | only in nvc0

Lines Matching refs:FB

10     struct pipe_framebuffer_state *fb = &nvc0->framebuffer;
11 struct nv50_surface *sf = nv50_surface(fb->zsbuf);
22 height = align(fb->height, 32);
23 width = fb->width % 224;
25 width = fb->width + (224 - width);
27 width = fb->width;
59 struct pipe_framebuffer_state *fb = &nvc0->framebuffer;
67 PUSH_DATA (push, (076543210 << 4) | fb->nr_cbufs);
69 PUSH_DATA (push, fb->width << 16);
70 PUSH_DATA (push, fb->height << 16);
72 for (i = 0; i < fb->nr_cbufs; ++i) {
73 struct nv50_surface *sf = nv50_surface(fb->cbufs[i]);
111 assert(!fb->zsbuf);
120 BCTX_REFN(nvc0->bufctx_3d, FB, res, WR);
123 if (fb->zsbuf) {
124 struct nv50_miptree *mt = nv50_miptree(fb->zsbuf->texture);
125 struct nv50_surface *sf = nv50_surface(fb->zsbuf);
131 PUSH_DATA (push, nvc0_format_table[fb->zsbuf->format].rt);
151 BCTX_REFN(nvc0->bufctx_3d, FB, &mt->base, WR);