1 /*
2  * Copyright (C) 2018 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include "gles1_core_functions.h"
20 #include "gles1_extensions_functions.h"
21 #include "gles2_core_functions.h"
22 #include "gles2_extensions_functions.h"
23 #include "gles3_only_functions.h"
24 #include "gles31_only_functions.h"
25 
26 #define LIST_GLES1_FUNCTIONS(X, Y) \
27     LIST_GLES1_CORE_FUNCTIONS(X) \
28     LIST_GLES1_EXTENSIONS_FUNCTIONS(Y) \
29 
30 #define LIST_GLES3_FUNCTIONS(X, Y) \
31     LIST_GLES2_CORE_FUNCTIONS(X) \
32     LIST_GLES2_EXTENSIONS_FUNCTIONS(Y) \
33     LIST_GLES3_ONLY_FUNCTIONS(X) \
34     LIST_GLES31_ONLY_FUNCTIONS(X)
35