xa: add xa_surface_from_handle()
authorRob Clark <robclark@freedesktop.org>
Sun, 12 May 2013 20:00:35 +0000 (16:00 -0400)
committerRob Clark <robclark@freedesktop.org>
Thu, 25 Jul 2013 17:59:54 +0000 (13:59 -0400)
For freedreno DDX, we have to create the scanout GEM bo in a special way
(until we have our own KMS/DRM kernel driver.. and even then for
phones/tablets you probably need to use the android drivers if you don't
want to port the lcd panel driver support).  The easiest way to handle
this is let the DDX create the scanout bo, and then create the xa
surface from that.

Signed-off-by: Rob Clark <robclark@freedesktop.org>
src/gallium/state_trackers/xa/xa_tracker.c
src/gallium/state_trackers/xa/xa_tracker.h

index 3410144141d7a6b632c7b9320838cb4b35b63ee7..b49f0d9e18d1674e06ec5c4bc2b8dd23f9c9f615 100644 (file)
@@ -279,13 +279,14 @@ xa_format_check_supported(struct xa_tracker *xa,
     return XA_ERR_NONE;
 }
 
-XA_EXPORT struct xa_surface *
-xa_surface_create(struct xa_tracker *xa,
+static struct xa_surface *
+surface_create(struct xa_tracker *xa,
                  int width,
                  int height,
                  int depth,
                  enum xa_surface_type stype,
-                 enum xa_formats xa_format, unsigned int flags)
+                 enum xa_formats xa_format, unsigned int flags,
+                 struct winsys_handle *whandle)
 {
     struct pipe_resource *template;
     struct xa_surface *srf;
@@ -320,7 +321,10 @@ xa_surface_create(struct xa_tracker *xa,
     if (flags & XA_FLAG_SCANOUT)
        template->bind |= PIPE_BIND_SCANOUT;
 
-    srf->tex = xa->screen->resource_create(xa->screen, template);
+    if (whandle)
+       srf->tex = xa->screen->resource_from_handle(xa->screen, template, whandle);
+    else
+       srf->tex = xa->screen->resource_create(xa->screen, template);
     if (!srf->tex)
        goto out_no_tex;
 
@@ -334,6 +338,35 @@ xa_surface_create(struct xa_tracker *xa,
     return NULL;
 }
 
+
+XA_EXPORT struct xa_surface *
+xa_surface_create(struct xa_tracker *xa,
+                 int width,
+                 int height,
+                 int depth,
+                 enum xa_surface_type stype,
+                 enum xa_formats xa_format, unsigned int flags)
+{
+    return surface_create(xa, width, height, depth, stype, xa_format, flags, NULL);
+}
+
+
+XA_EXPORT struct xa_surface *
+xa_surface_from_handle(struct xa_tracker *xa,
+                 int width,
+                 int height,
+                 int depth,
+                 enum xa_surface_type stype,
+                 enum xa_formats xa_format, unsigned int flags,
+                 uint32_t handle, uint32_t stride)
+{
+    struct winsys_handle whandle;
+    memset(&whandle, 0, sizeof(whandle));
+    whandle.handle = handle;
+    whandle.stride = stride;
+    return surface_create(xa, width, height, depth, stype, xa_format, flags, &whandle);
+}
+
 XA_EXPORT int
 xa_surface_redefine(struct xa_surface *srf,
                    int width,
index ffe24f7ba15ad06acb0c3573e45c6547a4db8e8f..13486219562955c7f31324e15b5205fef9669fec 100644 (file)
@@ -160,6 +160,15 @@ extern struct xa_surface *xa_surface_create(struct xa_tracker *xa,
                                            enum xa_formats pform,
                                            unsigned int flags);
 
+extern struct xa_surface * xa_surface_from_handle(struct xa_tracker *xa,
+                                           int width,
+                                           int height,
+                                           int depth,
+                                           enum xa_surface_type stype,
+                                           enum xa_formats pform,
+                                           unsigned int flags,
+                                           uint32_t handle, uint32_t stride);
+
 enum xa_formats xa_surface_format(const struct xa_surface *srf);
 
 extern void xa_surface_destroy(struct xa_surface *srf);