Initial commit
[profile/ivi/simulator-opengl.git] / egl_1_4 / 36BindTexImage.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 "implement.h"
33
34
35 EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) {
36         struct DisplayExtra* pDisplay = EGLINTER(LookUpDisplay)(dpy);
37         if (pDisplay == NULL) {
38                 EGLINTER(SetError)(EGL_BAD_DISPLAY);
39                 return EGL_FALSE;
40         }
41         if (pDisplay->bInitialized == EGL_FALSE) {
42                 EGLINTER(SetError)(EGL_NOT_INITIALIZED);
43                 return EGL_FALSE;
44         }
45         struct SurfaceExtra* pSurface = EGLINTER(LookUpSurface)(surface);
46         if (pSurface == NULL) {
47                 EGLINTER(SetError)(EGL_BAD_SURFACE);
48                 return EGL_FALSE;
49         }
50         /* TODO */
51         /* TODO */
52         FNPTR(BindTexImageARB)(pDisplay->native, pSurface->native, buffer );
53         return EGL_TRUE;
54 }