| /* |
| * Copyright (C) 2012 Research In Motion Limited. All rights reserved. |
| |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #ifndef OpenGLESShims_h |
| #define OpenGLESShims_h |
| |
| #if USE(OPENGL_ES) |
| #define glBindFramebufferEXT glBindFramebuffer |
| #define glFramebufferTexture2DEXT glFramebufferTexture2D |
| #define glBindRenderbufferEXT glBindRenderbuffer |
| #define glRenderbufferStorageEXT glRenderbufferStorage |
| #define glFramebufferRenderbufferEXT glFramebufferRenderbuffer |
| #define GL_RENDERBUFFER_EXT GL_RENDERBUFFER |
| #define GL_STENCIL_ATTACHMENT_EXT GL_STENCIL_ATTACHMENT |
| #define glCheckFramebufferStatusEXT glCheckFramebufferStatus |
| #define glDeleteFramebuffersEXT glDeleteFramebuffers |
| #define glDeleteRenderbuffersEXT glDeleteRenderbuffers |
| #define glGenRenderbuffersEXT glGenRenderbuffers |
| #define glGenFramebuffersEXT glGenFramebuffers |
| #define glGetFramebufferAttachmentParameterivEXT glGetFramebufferAttachmentParameteriv |
| #define glGetRenderbufferParameterivEXT glGetRenderbufferParameteriv |
| #define glIsRenderbufferEXT glIsRenderbuffer |
| #define glIsFramebufferEXT glIsFramebuffer |
| #define glGenerateMipmapEXT glGenerateMipmap |
| #define GL_DEPTH_ATTACHMENT_EXT GL_DEPTH_ATTACHMENT |
| #define GL_COLOR_ATTACHMENT0_EXT GL_COLOR_ATTACHMENT0 |
| #define GL_FRAMEBUFFER_COMPLETE_EXT GL_FRAMEBUFFER_COMPLETE |
| #define GL_FRAMEBUFFER_EXT GL_FRAMEBUFFER |
| #define GL_DEPTH24_STENCIL8_EXT GL_DEPTH24_STENCIL8_OES |
| #define GL_RGBA8 GL_RGBA8_OES |
| #define GL_RGB8 GL_RGB8_OES |
| #define GL_READ_FRAMEBUFFER_EXT 0x8CA8 |
| #define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 |
| #define FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x9134 |
| #define GL_VERTEX_SHADER 0x8B31 |
| #define GL_FRAGMENT_SHADER 0x8B30 |
| #define GL_SAMPLER_2D 0x8B5E |
| #define GL_SAMPLER_CUBE 0x8B60 |
| #define GL_SAMPLER_2D_RECT_ARB 0x8B63 |
| #define GL_NONE 0 |
| #endif |
| |
| #endif // OpenGLESShims_h |
| |