/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_screen.h | 35 struct nouveau_object *m2mf; member in struct:nv30_screen
|
nv30_screen.c | 308 nouveau_object_del(&screen->m2mf); 411 /* DMA_NOTIFY object, we don't actually use this but M2MF fails without */ 526 NULL, 0, &screen->m2mf); 528 FAIL_SCREEN_INIT("error allocating m2mf object: %d\n", ret); 530 BEGIN_NV04(push, NV01_SUBC(M2MF, OBJECT), 1); 531 PUSH_DATA (push, screen->m2mf->handle);
|
nv30_transfer.c | 477 /* The NOP+OFFSET_OUT stuff after each M2MF transfer *is* actually required 479 * attempting to do conditional rendering that has a M2MF transfer done 532 BEGIN_NV04(push, NV04_GRAPH(M2MF, NOP), 1); 659 { "m2mf", nv30_transfer_m2mf, nv30_transfer_rect_m2mf }, 725 BEGIN_NV04(push, NV04_GRAPH(M2MF, NOP), 1); 749 BEGIN_NV04(push, NV04_GRAPH(M2MF, NOP), 1);
|
nv30_winsys.h | 127 * 0: <1.0.0 - used by kernel for m2mf
|
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_screen.h | 69 struct nouveau_object *m2mf; member in struct:nv50_screen
|
nv50_screen.c | 291 nouveau_object_del(&screen->m2mf); 336 PUSH_DATA (push, screen->m2mf->handle); 657 NULL, 0, &screen->m2mf); 659 NOUVEAU_ERR("Failed to allocate PGRAPH context for M2MF: %d\n", ret);
|
nv50_surface.c | 201 boolean m2mf; local 214 m2mf = (src->format == dst->format) || 220 if (m2mf) {
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_screen.h | 65 struct nouveau_object *m2mf; member in struct:nvc0_screen
|
nvc0_screen.c | 281 nouveau_object_del(&screen->m2mf); 468 &screen->m2mf); 470 FAIL_SCREEN_INIT("Error allocating PGRAPH context for M2MF: %d\n", ret); 473 PUSH_DATA (push, screen->m2mf->oclass); 474 if (screen->m2mf->oclass == NVE4_P2MF_CLASS) {
|
nvc0_context.c | 176 /* shader builtin library is per-screen, but we need a context for m2mf */
|
nvc0_surface.c | 208 boolean m2mf; local 221 m2mf = (src->format == dst->format) || 227 if (m2mf) { [all...] |
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_context.h | 58 struct nouveau_object *m2mf; member in struct:nouveau_hw_state
|
nv04_surface.c | 474 nouveau_object_del(&hw->m2mf); 497 NULL, 0, &hw->m2mf); 501 BEGIN_NV04(push, NV01_SUBC(M2MF, OBJECT), 1); 502 PUSH_DATA (push, hw->m2mf->handle);
|