[Mesa-dev] [PATCH RESEND 2/3] st/dri: cleanup image_from_fd/dma_buf paths
Stanimir Varbanov
stanimir.varbanov at linaro.org
Sun May 15 11:51:14 UTC 2016
Signed-off-by: Stanimir Varbanov <stanimir.varbanov at linaro.org>
---
src/gallium/state_trackers/dri/dri2.c | 75 ++++++++++++++++++-----------------
1 file changed, 39 insertions(+), 36 deletions(-)
diff --git a/src/gallium/state_trackers/dri/dri2.c b/src/gallium/state_trackers/dri/dri2.c
index 8ace842b74b8..78b1b86515e0 100644
--- a/src/gallium/state_trackers/dri/dri2.c
+++ b/src/gallium/state_trackers/dri/dri2.c
@@ -832,21 +832,43 @@ dri2_create_image_from_name(__DRIscreen *_screen,
static __DRIimage *
dri2_create_image_from_fd(__DRIscreen *_screen,
- int width, int height, int format,
- int fd, int stride, void *loaderPrivate)
+ int width, int height, int fourcc,
+ int *fds, int num_fds, int *strides,
+ int *offsets, unsigned *error,
+ int *dri_components, void *loaderPrivate)
{
struct winsys_handle whandle;
+ int format;
+ __DRIimage *img;
- if (fd < 0)
+ if (num_fds != 1 || offsets[0] != 0) {
+ *error = __DRI_IMAGE_ERROR_BAD_MATCH;
return NULL;
+ }
+
+ format = convert_fourcc(fourcc, dri_components);
+ if (format == -1) {
+ *error = __DRI_IMAGE_ERROR_BAD_MATCH;
+ return NULL;
+ }
+
+ if (fds[0] < 0) {
+ *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
+ return NULL;
+ }
memset(&whandle, 0, sizeof(whandle));
whandle.type = DRM_API_HANDLE_TYPE_FD;
- whandle.handle = (unsigned)fd;
- whandle.stride = stride;
+ whandle.handle = (unsigned)fds[0];
+ whandle.stride = (unsigned)strides[0];
+ whandle.offset = (unsigned)offsets[0];
- return dri2_create_image_from_winsys(_screen, width, height, format,
- &whandle, loaderPrivate);
+ img = dri2_create_image_from_winsys(_screen, width, height, format,
+ &whandle, loaderPrivate);
+ if(img == NULL)
+ *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
+
+ return img;
}
static __DRIimage *
@@ -1142,19 +1164,12 @@ dri2_from_fds(__DRIscreen *screen, int width, int height, int fourcc,
void *loaderPrivate)
{
__DRIimage *img;
- int format, dri_components;
-
- if (num_fds != 1)
- return NULL;
- if (offsets[0] != 0)
- return NULL;
-
- format = convert_fourcc(fourcc, &dri_components);
- if (format == -1)
- return NULL;
+ int dri_components;
+ unsigned error;
- img = dri2_create_image_from_fd(screen, width, height, format,
- fds[0], strides[0], loaderPrivate);
+ img = dri2_create_image_from_fd(screen, width, height, fourcc,
+ fds, num_fds, strides, offsets, &error,
+ &dri_components, loaderPrivate);
if (img == NULL)
return NULL;
@@ -1175,25 +1190,13 @@ dri2_from_dma_bufs(__DRIscreen *screen,
void *loaderPrivate)
{
__DRIimage *img;
- int format, dri_components;
-
- if (num_fds != 1 || offsets[0] != 0) {
- *error = __DRI_IMAGE_ERROR_BAD_MATCH;
- return NULL;
- }
-
- format = convert_fourcc(fourcc, &dri_components);
- if (format == -1) {
- *error = __DRI_IMAGE_ERROR_BAD_MATCH;
- return NULL;
- }
+ int dri_components;
- img = dri2_create_image_from_fd(screen, width, height, format,
- fds[0], strides[0], loaderPrivate);
- if (img == NULL) {
- *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
+ img = dri2_create_image_from_fd(screen, width, height, fourcc,
+ fds, num_fds, strides, offsets, error,
+ &dri_components, loaderPrivate);
+ if (img == NULL)
return NULL;
- }
img->yuv_color_space = yuv_color_space;
img->sample_range = sample_range;
--
2.7.4
More information about the mesa-dev
mailing list