Initial commit
[profile/ivi/simulator-opengl.git] / es_2_0 / Flush.c
1 /* 
2  * Copyright (C) 2010 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
3  * 
4  * Contact:
5  * DongKyun Yun <dk77.yun@samsung.com>
6  * SangJin Kim <sangjin3.kim@samsung.com>
7  * HyunGoo Kang <hyungoo1.kang@samsung.com>
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining a copy of
10  * this software and associated documentation files (the "Software"), to deal in
11  * the Software without restriction, including without limitation the rights to
12  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
13  * of the Software, and to permit persons to whom the Software is furnished to do
14  * so, subject to the following conditions:
15  * 
16  * The above copyright notice and this permission notice shall be included in all
17  * copies or substantial portions of the Software.
18  * 
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25  * SOFTWARE.
26  * 
27  * Contributors:
28  * - S-Core Co., Ltd
29  *
30  */
31
32 #include "es2front.h"
33
34
35 void GL_APIENTRY ES2ENTRY(Flush)(void) {
36         FNPTR(Flush)();
37 }
38
39 void GL_APIENTRY ES2ENTRY(Finish)(void) {
40         FNPTR(Finish)();
41 }
42
43 void GL_APIENTRY ES2ENTRY(Hint)(GLenum target, GLenum mode) {
44         switch (target) {
45         default:
46                 ES2INTER(SetError)(GL_INVALID_ENUM);
47                 return;
48         case GL_GENERATE_MIPMAP_HINT:
49                 switch (mode) {
50                 default:
51                         ES2INTER(SetError)(GL_INVALID_ENUM);
52                         return;
53                 case GL_FASTEST:
54                 case GL_NICEST:
55                 case GL_DONT_CARE:
56                         break;
57                 }
58                 break;
59         }
60         FNPTR(Hint)(target, mode);
61 }