From: Benjamin Franzke Date: Fri, 4 Feb 2011 11:25:04 +0000 (+0100) Subject: st/egl: native_helper: Add resource_surface_import_resource X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=464cb3a09ea61b6e7fe7f5d2a69e3cdab210da8f;p=mesa.git st/egl: native_helper: Add resource_surface_import_resource --- diff --git a/src/gallium/state_trackers/egl/common/native_helper.c b/src/gallium/state_trackers/egl/common/native_helper.c index 0f2d02032b5..a9d8f32e007 100644 --- a/src/gallium/state_trackers/egl/common/native_helper.c +++ b/src/gallium/state_trackers/egl/common/native_helper.c @@ -143,6 +143,14 @@ resource_surface_add_resources(struct resource_surface *rsurf, return ((rsurf->resource_mask & resource_mask) == resource_mask); } +void +resource_surface_import_resource(struct resource_surface *rsurf, + enum native_attachment which, + struct pipe_resource *pres) +{ + pipe_resource_reference(&rsurf->resources[which], pres); + rsurf->resource_mask |= 1 << which; +} void resource_surface_get_resources(struct resource_surface *rsurf, diff --git a/src/gallium/state_trackers/egl/common/native_helper.h b/src/gallium/state_trackers/egl/common/native_helper.h index d1569ac3ea6..03995de19ae 100644 --- a/src/gallium/state_trackers/egl/common/native_helper.h +++ b/src/gallium/state_trackers/egl/common/native_helper.h @@ -50,6 +50,11 @@ boolean resource_surface_add_resources(struct resource_surface *rsurf, uint resource_mask); +void +resource_surface_import_resource(struct resource_surface *rsurf, + enum native_attachment which, + struct pipe_resource *pres); + void resource_surface_get_resources(struct resource_surface *rsurf, struct pipe_resource **resources,