1af69d88dSmrg/************************************************************************** 2af69d88dSmrg * 3af69d88dSmrg * Copyright 2013 Advanced Micro Devices, Inc. 4af69d88dSmrg * All Rights Reserved. 5af69d88dSmrg * 6af69d88dSmrg * Permission is hereby granted, free of charge, to any person obtaining a 7af69d88dSmrg * copy of this software and associated documentation files (the 8af69d88dSmrg * "Software"), to deal in the Software without restriction, including 9af69d88dSmrg * without limitation the rights to use, copy, modify, merge, publish, 10af69d88dSmrg * distribute, sub license, and/or sell copies of the Software, and to 11af69d88dSmrg * permit persons to whom the Software is furnished to do so, subject to 12af69d88dSmrg * the following conditions: 13af69d88dSmrg * 14af69d88dSmrg * The above copyright notice and this permission notice (including the 15af69d88dSmrg * next paragraph) shall be included in all copies or substantial portions 16af69d88dSmrg * of the Software. 17af69d88dSmrg * 18af69d88dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 19af69d88dSmrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 20af69d88dSmrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 21af69d88dSmrg * IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR 22af69d88dSmrg * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 23af69d88dSmrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 24af69d88dSmrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 25af69d88dSmrg * 26af69d88dSmrg **************************************************************************/ 27af69d88dSmrg 28af69d88dSmrg/* 29af69d88dSmrg * Authors: 30af69d88dSmrg * Christian König <christian.koenig@amd.com> 31af69d88dSmrg * 32af69d88dSmrg */ 33af69d88dSmrg 34af69d88dSmrg#ifndef VDPAU_H 35af69d88dSmrg#define VDPAU_H 36af69d88dSmrg 37af69d88dSmrgextern void GLAPIENTRY 38af69d88dSmrg_mesa_VDPAUInitNV(const GLvoid *vdpDevice, const GLvoid *getProcAddress); 39af69d88dSmrg 40af69d88dSmrgextern void GLAPIENTRY 41af69d88dSmrg_mesa_VDPAUFiniNV(void); 42af69d88dSmrg 43af69d88dSmrgextern GLintptr GLAPIENTRY 44af69d88dSmrg_mesa_VDPAURegisterVideoSurfaceNV(const GLvoid *vdpSurface, GLenum target, 45af69d88dSmrg GLsizei numTextureNames, 46af69d88dSmrg const GLuint *textureNames); 47af69d88dSmrg 48af69d88dSmrgextern GLintptr GLAPIENTRY 49af69d88dSmrg_mesa_VDPAURegisterOutputSurfaceNV(const GLvoid *vdpSurface, GLenum target, 50af69d88dSmrg GLsizei numTextureNames, 51af69d88dSmrg const GLuint *textureNames); 52af69d88dSmrg 53af69d88dSmrgextern GLboolean GLAPIENTRY 54af69d88dSmrg_mesa_VDPAUIsSurfaceNV(GLintptr surface); 55af69d88dSmrg 56af69d88dSmrgextern void GLAPIENTRY 57af69d88dSmrg_mesa_VDPAUUnregisterSurfaceNV(GLintptr surface); 58af69d88dSmrg 59af69d88dSmrgextern void GLAPIENTRY 60af69d88dSmrg_mesa_VDPAUGetSurfaceivNV(GLintptr surface, GLenum pname, GLsizei bufSize, 61af69d88dSmrg GLsizei *length, GLint *values); 62af69d88dSmrg 63af69d88dSmrgextern void GLAPIENTRY 64af69d88dSmrg_mesa_VDPAUSurfaceAccessNV(GLintptr surface, GLenum access); 65af69d88dSmrg 66af69d88dSmrgextern void GLAPIENTRY 67af69d88dSmrg_mesa_VDPAUMapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces); 68af69d88dSmrg 69af69d88dSmrgextern void GLAPIENTRY 70af69d88dSmrg_mesa_VDPAUUnmapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces); 71af69d88dSmrg 72af69d88dSmrg#endif /* VDPAU_H */ 73