OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 registerExtension<OESTextureFloat>(m_oesTextureFloat); | 166 registerExtension<OESTextureFloat>(m_oesTextureFloat); |
167 registerExtension<OESTextureFloatLinear>(m_oesTextureFloatLinear); | 167 registerExtension<OESTextureFloatLinear>(m_oesTextureFloatLinear); |
168 registerExtension<OESTextureHalfFloat>(m_oesTextureHalfFloat); | 168 registerExtension<OESTextureHalfFloat>(m_oesTextureHalfFloat); |
169 registerExtension<OESTextureHalfFloatLinear>(m_oesTextureHalfFloatLinear); | 169 registerExtension<OESTextureHalfFloatLinear>(m_oesTextureHalfFloatLinear); |
170 registerExtension<OESVertexArrayObject>(m_oesVertexArrayObject); | 170 registerExtension<OESVertexArrayObject>(m_oesVertexArrayObject); |
171 registerExtension<WebGLCompressedTextureASTC>(m_webglCompressedTextureASTC,
DraftExtension); | 171 registerExtension<WebGLCompressedTextureASTC>(m_webglCompressedTextureASTC,
DraftExtension); |
172 registerExtension<WebGLCompressedTextureATC>(m_webglCompressedTextureATC, Ap
provedExtension, bothPrefixes); | 172 registerExtension<WebGLCompressedTextureATC>(m_webglCompressedTextureATC, Ap
provedExtension, bothPrefixes); |
173 registerExtension<WebGLCompressedTextureETC1>(m_webglCompressedTextureETC1); | 173 registerExtension<WebGLCompressedTextureETC1>(m_webglCompressedTextureETC1); |
174 registerExtension<WebGLCompressedTexturePVRTC>(m_webglCompressedTexturePVRTC
, ApprovedExtension, bothPrefixes); | 174 registerExtension<WebGLCompressedTexturePVRTC>(m_webglCompressedTexturePVRTC
, ApprovedExtension, bothPrefixes); |
175 registerExtension<WebGLCompressedTextureS3TC>(m_webglCompressedTextureS3TC,
ApprovedExtension, bothPrefixes); | 175 registerExtension<WebGLCompressedTextureS3TC>(m_webglCompressedTextureS3TC,
ApprovedExtension, bothPrefixes); |
176 registerExtension<WebGLCompressedTextureS3TCsRGB>(m_webglCompressedTextureS3
TCsRGB, ApprovedExtension, bothPrefixes); | 176 registerExtension<WebGLCompressedTextureS3TCsRGB>(m_webglCompressedTextureS3
TCsRGB, DraftExtension, bothPrefixes); |
177 registerExtension<WebGLDebugRendererInfo>(m_webglDebugRendererInfo); | 177 registerExtension<WebGLDebugRendererInfo>(m_webglDebugRendererInfo); |
178 registerExtension<WebGLDebugShaders>(m_webglDebugShaders); | 178 registerExtension<WebGLDebugShaders>(m_webglDebugShaders); |
179 registerExtension<WebGLDepthTexture>(m_webglDepthTexture, ApprovedExtension,
bothPrefixes); | 179 registerExtension<WebGLDepthTexture>(m_webglDepthTexture, ApprovedExtension,
bothPrefixes); |
180 registerExtension<WebGLDrawBuffers>(m_webglDrawBuffers); | 180 registerExtension<WebGLDrawBuffers>(m_webglDrawBuffers); |
181 registerExtension<WebGLLoseContext>(m_webglLoseContext, ApprovedExtension, b
othPrefixes); | 181 registerExtension<WebGLLoseContext>(m_webglLoseContext, ApprovedExtension, b
othPrefixes); |
182 } | 182 } |
183 | 183 |
184 DEFINE_TRACE(WebGLRenderingContext) | 184 DEFINE_TRACE(WebGLRenderingContext) |
185 { | 185 { |
186 visitor->trace(m_angleInstancedArrays); | 186 visitor->trace(m_angleInstancedArrays); |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 visitor->traceWrappers(m_webglDrawBuffers); | 233 visitor->traceWrappers(m_webglDrawBuffers); |
234 visitor->traceWrappers(m_webglCompressedTextureASTC); | 234 visitor->traceWrappers(m_webglCompressedTextureASTC); |
235 visitor->traceWrappers(m_webglCompressedTextureATC); | 235 visitor->traceWrappers(m_webglCompressedTextureATC); |
236 visitor->traceWrappers(m_webglCompressedTextureETC1); | 236 visitor->traceWrappers(m_webglCompressedTextureETC1); |
237 visitor->traceWrappers(m_webglCompressedTexturePVRTC); | 237 visitor->traceWrappers(m_webglCompressedTexturePVRTC); |
238 visitor->traceWrappers(m_webglCompressedTextureS3TC); | 238 visitor->traceWrappers(m_webglCompressedTextureS3TC); |
239 visitor->traceWrappers(m_webglCompressedTextureS3TCsRGB); | 239 visitor->traceWrappers(m_webglCompressedTextureS3TCsRGB); |
240 visitor->traceWrappers(m_webglDepthTexture); | 240 visitor->traceWrappers(m_webglDepthTexture); |
241 } | 241 } |
242 } // namespace blink | 242 } // namespace blink |
OLD | NEW |