2 * Copyright (C) 2009 Splitted-Desktop Systems. All Rights Reserved.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19 * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 * Return a suitable VADisplay for VA API
38 * @param[in] dpy the X11 display
41 VADisplay
vaGetDisplayGLX(
46 * Create a surface used for display to OpenGL
48 * The application shall maintain the live GLX context itself.
49 * Implementations are free to use glXGetCurrentContext() and
50 * glXGetCurrentDrawable() functions for internal purposes.
52 * @param[in] dpy the VA display
53 * @param[in] target the GL target to which the texture needs to be bound
54 * @param[in] texture the GL texture
55 * @param[out] gl_surface the VA/GLX surface
56 * @return VA_STATUS_SUCCESS if successful
58 VAStatus
vaCreateSurfaceGLX(
66 * Destroy a VA/GLX surface
68 * The application shall maintain the live GLX context itself.
69 * Implementations are free to use glXGetCurrentContext() and
70 * glXGetCurrentDrawable() functions for internal purposes.
72 * @param[in] dpy the VA display
73 * @param[in] gl_surface the VA surface
74 * @return VA_STATUS_SUCCESS if successful
76 VAStatus
vaDestroySurfaceGLX(
82 * Copy a VA surface to a VA/GLX surface
84 * This function will not return until the copy is completed. At this
85 * point, the underlying GL texture will contain the surface pixels
86 * in an RGB format defined by the user.
88 * The application shall maintain the live GLX context itself.
89 * Implementations are free to use glXGetCurrentContext() and
90 * glXGetCurrentDrawable() functions for internal purposes.
92 * @param[in] dpy the VA display
93 * @param[in] gl_surface the VA/GLX destination surface
94 * @param[in] surface the VA source surface
95 * @param[in] flags the PutSurface flags
96 * @return VA_STATUS_SUCCESS if successful
98 VAStatus
vaCopySurfaceGLX(
109 #endif /* VA_GLX_H */