Initial commit
[profile/ivi/simulator-opengl.git] / es_1_1 / 43read.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 "gl_imp.h"
33
34 GL_API void GL_APIENTRY EXTFN(ReadPixels)(GLint x, GLint y,
35                 GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels) {
36         if (format == GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES) format = GL_RGBA;
37         if (format == GL_IMPLEMENTATION_COLOR_READ_TYPE_OES) format = GL_UNSIGNED_BYTE;
38         if (format != GL_RGBA
39                         || type != GL_UNSIGNED_BYTE) {
40                 INTFN(SetError)(GL_INVALID_ENUM);
41                 return;
42         }
43         FNPTR(ReadPixels)(x, y, width, height, format, type, pixels);
44 }