commit 7edb598

Michael Forney  ·  2014-01-31 12:27:33 +0000 UTC
parent b77d204
nouveau: Add explanation for why map only works with non-tiled buffers
1 files changed,  +2, -0
+2, -0
1@@ -587,6 +587,8 @@ bool buffer_map(struct wld_buffer * base)
2 {
3     struct nouveau_buffer * buffer = nouveau_buffer(base);
4 
5+    /* If the buffer is tiled, it cannot be mapped into virtual memory in order
6+     * to appear linear like intel can do with map_gtt. */
7     if (buffer->bo->config.nvc0.tile_mode)
8         return false;
9