Displaying 1 result from an estimated 1 matches for "permit_pb".
Did you mean:
permit_in
2013 Dec 02
2
[PATCH] nouveau: Add lots of comments to the buffer transfer logic
...destroy(struct pipe_screen *pscreen,
NOUVEAU_DRV_STAT(nouveau_screen(pscreen), buf_obj_current_count, -1);
}
+/* Set up a staging area for the transfer. This is either done in "regular"
+ * system memory if the driver supports push_data (nv50+) and the data is
+ * small enough (and permit_pb == true), or in GART memory.
+ */
static uint8_t *
nouveau_transfer_staging(struct nouveau_context *nv,
struct nouveau_transfer *tx, boolean permit_pb)
@@ -155,7 +159,10 @@ nouveau_transfer_staging(struct nouveau_context *nv,
return tx->map;
}
-/* Maybe just mi...