bitmap.c revision 494e0025d995fb2cab04474d13880ee438b0c868
1/**************************************************************************
2 *
3 * Copyright 2010 Thomas Balling Sørensen.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#include <vdpau/vdpau.h>
29
30#include "util/u_memory.h"
31#include "util/u_sampler.h"
32
33#include "vdpau_private.h"
34
35/**
36 * Create a VdpBitmapSurface.
37 */
38VdpStatus
39vlVdpBitmapSurfaceCreate(VdpDevice device,
40                         VdpRGBAFormat rgba_format,
41                         uint32_t width, uint32_t height,
42                         VdpBool frequently_accessed,
43                         VdpBitmapSurface *surface)
44{
45   struct pipe_context *pipe;
46   struct pipe_resource res_tmpl, *res;
47   struct pipe_sampler_view sv_templ;
48
49   vlVdpBitmapSurface *vlsurface = NULL;
50
51   if (!(width && height))
52      return VDP_STATUS_INVALID_SIZE;
53
54   vlVdpDevice *dev = vlGetDataHTAB(device);
55   if (!dev)
56      return VDP_STATUS_INVALID_HANDLE;
57
58   pipe = dev->context;
59   if (!pipe)
60      return VDP_STATUS_INVALID_HANDLE;
61
62   if (!surface)
63      return VDP_STATUS_INVALID_POINTER;
64
65   vlsurface = CALLOC(1, sizeof(vlVdpBitmapSurface));
66   if (!vlsurface)
67      return VDP_STATUS_RESOURCES;
68
69   vlsurface->device = dev;
70
71   memset(&res_tmpl, 0, sizeof(res_tmpl));
72
73   res_tmpl.target = PIPE_TEXTURE_2D;
74   res_tmpl.format = FormatRGBAToPipe(rgba_format);
75   res_tmpl.width0 = width;
76   res_tmpl.height0 = height;
77   res_tmpl.depth0 = 1;
78   res_tmpl.array_size = 1;
79   res_tmpl.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET;
80   res_tmpl.usage = frequently_accessed ? PIPE_USAGE_DYNAMIC : PIPE_USAGE_STATIC;
81   res = pipe->screen->resource_create(pipe->screen, &res_tmpl);
82   if (!res) {
83      FREE(dev);
84      return VDP_STATUS_RESOURCES;
85   }
86
87   vlVdpDefaultSamplerViewTemplate(&sv_templ, res);
88   vlsurface->sampler_view = pipe->create_sampler_view(pipe, res, &sv_templ);
89   if (!vlsurface->sampler_view) {
90      pipe_resource_reference(&res, NULL);
91      FREE(dev);
92      return VDP_STATUS_RESOURCES;
93   }
94
95   *surface = vlAddDataHTAB(vlsurface);
96   if (*surface == 0) {
97      pipe_resource_reference(&res, NULL);
98      FREE(dev);
99      return VDP_STATUS_ERROR;
100   }
101
102   pipe_resource_reference(&res, NULL);
103
104   return VDP_STATUS_OK;
105}
106
107/**
108 * Destroy a VdpBitmapSurface.
109 */
110VdpStatus
111vlVdpBitmapSurfaceDestroy(VdpBitmapSurface surface)
112{
113   vlVdpBitmapSurface *vlsurface;
114
115   vlsurface = vlGetDataHTAB(surface);
116   if (!vlsurface)
117      return VDP_STATUS_INVALID_HANDLE;
118
119   vlVdpResolveDelayedRendering(vlsurface->device, NULL, NULL);
120
121   pipe_sampler_view_reference(&vlsurface->sampler_view, NULL);
122
123   vlRemoveDataHTAB(surface);
124   FREE(vlsurface);
125
126   return VDP_STATUS_OK;
127}
128
129/**
130 * Retrieve the parameters used to create a VdpBitmapSurface.
131 */
132VdpStatus
133vlVdpBitmapSurfaceGetParameters(VdpBitmapSurface surface,
134                                VdpRGBAFormat *rgba_format,
135                                uint32_t *width, uint32_t *height,
136                                VdpBool *frequently_accessed)
137{
138   vlVdpBitmapSurface *vlsurface;
139   struct pipe_resource *res;
140
141   vlsurface = vlGetDataHTAB(surface);
142   if (!vlsurface)
143      return VDP_STATUS_INVALID_HANDLE;
144
145   if (!(rgba_format && width && height && frequently_accessed))
146      return VDP_STATUS_INVALID_POINTER;
147
148   res = vlsurface->sampler_view->texture;
149   *rgba_format = PipeToFormatRGBA(res->format);
150   *width = res->width0;
151   *height = res->height0;
152   *frequently_accessed = res->usage == PIPE_USAGE_DYNAMIC;
153
154   return VDP_STATUS_OK;
155}
156
157/**
158 * Copy image data from application memory in the surface's native format to
159 * a VdpBitmapSurface.
160 */
161VdpStatus
162vlVdpBitmapSurfacePutBitsNative(VdpBitmapSurface surface,
163                                void const *const *source_data,
164                                uint32_t const *source_pitches,
165                                VdpRect const *destination_rect)
166{
167   vlVdpBitmapSurface *vlsurface;
168   struct pipe_box dst_box;
169   struct pipe_context *pipe;
170
171   vlsurface = vlGetDataHTAB(surface);
172   if (!vlsurface)
173      return VDP_STATUS_INVALID_HANDLE;
174
175   if (!(source_data && source_pitches))
176      return VDP_STATUS_INVALID_POINTER;
177
178   pipe = vlsurface->device->context;
179
180   vlVdpResolveDelayedRendering(vlsurface->device, NULL, NULL);
181
182   dst_box = RectToPipeBox(destination_rect, vlsurface->sampler_view->texture);
183   pipe->transfer_inline_write(pipe, vlsurface->sampler_view->texture, 0,
184                               PIPE_TRANSFER_WRITE, &dst_box, *source_data,
185                               *source_pitches, 0);
186   return VDP_STATUS_OK;
187}
188