forked from mosterta/libvdpau-sunxi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
surface_bitmap.c
83 lines (65 loc) · 2.38 KB
/
surface_bitmap.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* Copyright (c) 2013 Jens Kuske <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "vdpau_private.h"
VdpStatus vdp_bitmap_surface_create(VdpDevice device, VdpRGBAFormat rgba_format, uint32_t width, uint32_t height, VdpBool frequently_accessed, VdpBitmapSurface *surface)
{
#if 0
device_ctx_t *dev = handle_get(device);
if (!dev)
return VDP_STATUS_INVALID_HANDLE;
bitmap_surface_ctx_t *out = handle_create(sizeof(*out), surface, htype_bitmap);
if (!out)
return VDP_STATUS_RESOURCES;
out->frequently_accessed = frequently_accessed;
ret = rgba_create(&out->rgba, dev, width, height, rgba_format);
if (ret != VDP_STATUS_OK)
{
handle_destroy(*surface);
return ret;
}
return VDP_STATUS_OK;
#else
return VDP_STATUS_ERROR;
#endif
}
VdpStatus vdp_bitmap_surface_destroy(VdpBitmapSurface surface)
{
handle_destroy(surface);
return VDP_STATUS_OK;
}
VdpStatus vdp_bitmap_surface_get_parameters(VdpBitmapSurface surface, VdpRGBAFormat *rgba_format, uint32_t *width, uint32_t *height, VdpBool *frequently_accessed)
{
return VDP_STATUS_ERROR;
}
VdpStatus vdp_bitmap_surface_put_bits_native(VdpBitmapSurface surface, void const *const *source_data, uint32_t const *source_pitches, VdpRect const *destination_rect)
{
return VDP_STATUS_ERROR;
}
VdpStatus vdp_bitmap_surface_query_capabilities(VdpDevice device, VdpRGBAFormat surface_rgba_format, VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
{
if (!is_supported || !max_width || !max_height)
return VDP_STATUS_INVALID_POINTER;
device_ctx_t *dev = handle_get(device);
if (!dev)
return VDP_STATUS_INVALID_HANDLE;
*is_supported = VDP_FALSE;
*max_width = 8192;
*max_height = 8192;
return VDP_STATUS_OK;
}