mapi: add GL_ARB_bindless_texture entry points
[mesa.git] / src / mesa / main / texturebindless.c
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 #include "glheader.h"
25 #include "context.h"
26 #include "enums.h"
27 #include "imports.h"
28 #include "macros.h"
29 #include "mtypes.h"
30 #include "texobj.h"
31 #include "texturebindless.h"
32
33 #include "util/set.h"
34 #include "util/hash_table.h"
35
36 GLuint64 GLAPIENTRY
37 _mesa_GetTextureHandleARB(GLuint texture)
38 {
39 return 0;
40 }
41
42 GLuint64 GLAPIENTRY
43 _mesa_GetTextureSamplerHandleARB(GLuint texture, GLuint sampler)
44 {
45 return 0;
46 }
47
48 void GLAPIENTRY
49 _mesa_MakeTextureHandleResidentARB(GLuint64 handle)
50 {
51 }
52
53 void GLAPIENTRY
54 _mesa_MakeTextureHandleNonResidentARB(GLuint64 handle)
55 {
56 }
57
58 GLuint64 GLAPIENTRY
59 _mesa_GetImageHandleARB(GLuint texture, GLint level, GLboolean layered,
60 GLint layer, GLenum format)
61 {
62 return 0;
63 }
64
65 void GLAPIENTRY
66 _mesa_MakeImageHandleResidentARB(GLuint64 handle, GLenum access)
67 {
68 }
69
70 void GLAPIENTRY
71 _mesa_MakeImageHandleNonResidentARB(GLuint64 handle)
72 {
73 }
74
75 GLboolean GLAPIENTRY
76 _mesa_IsTextureHandleResidentARB(GLuint64 handle)
77 {
78 return GL_FALSE;
79 }
80
81 GLboolean GLAPIENTRY
82 _mesa_IsImageHandleResidentARB(GLuint64 handle)
83 {
84 return GL_FALSE;
85 }