mapi: add GL_ARB_bindless_texture entry points
[mesa.git] / src / mesa / main / texturebindless.h
1 /*
2 * Copyright © 2017 Valve Corporation.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #ifndef TEXTUREBINDLESS_H
25 #define TEXTUREBINDLESS_H
26
27 #include "mtypes.h"
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /**
34 * \name API functions
35 */
36 /*@{*/
37
38 GLuint64 GLAPIENTRY
39 _mesa_GetTextureHandleARB(GLuint texture);
40 GLuint64 GLAPIENTRY
41 _mesa_GetTextureSamplerHandleARB(GLuint texture, GLuint sampler);
42
43 void GLAPIENTRY
44 _mesa_MakeTextureHandleResidentARB(GLuint64 handle);
45 void GLAPIENTRY
46 _mesa_MakeTextureHandleNonResidentARB(GLuint64 handle);
47
48 GLuint64 GLAPIENTRY
49 _mesa_GetImageHandleARB(GLuint texture, GLint level, GLboolean layered,
50 GLint layer, GLenum format);
51
52 void GLAPIENTRY
53 _mesa_MakeImageHandleResidentARB(GLuint64 handle, GLenum access);
54 void GLAPIENTRY
55 _mesa_MakeImageHandleNonResidentARB(GLuint64 handle);
56
57 GLboolean GLAPIENTRY
58 _mesa_IsTextureHandleResidentARB(GLuint64 handle);
59 GLboolean GLAPIENTRY
60 _mesa_IsImageHandleResidentARB(GLuint64 handle);
61
62 /*@}*/
63
64 #ifdef __cplusplus
65 }
66 #endif
67
68 #endif