Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: Source/core/html/canvas/WebGLExtensionName.h

Issue 24096029: Moved the majority of WebGL functionality into WebGLRenderingContextBase (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed typo in gypi, was only causing issues on Windows (?!?) Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WebGLExtensionName_h
6 #define WebGLExtensionName_h
7
8 namespace WebCore {
9
10 // Extension names are needed to properly wrap instances in JavaScript objects.
11 enum WebGLExtensionName {
12 ANGLEInstancedArraysName,
13 EXTFragDepthName,
14 EXTTextureFilterAnisotropicName,
15 OESElementIndexUintName,
16 OESStandardDerivativesName,
17 OESTextureFloatLinearName,
18 OESTextureFloatName,
19 OESTextureHalfFloatLinearName,
20 OESTextureHalfFloatName,
21 OESVertexArrayObjectName,
22 WebGLCompressedTextureATCName,
23 WebGLCompressedTexturePVRTCName,
24 WebGLCompressedTextureS3TCName,
25 WebGLDebugRendererInfoName,
26 WebGLDebugShadersName,
27 WebGLDepthTextureName,
28 WebGLDrawBuffersName,
29 WebGLLoseContextName,
30 WebGLExtensionNameCount, // Must be the last entry
31 };
32
33 }
34
35 #endif // WebGLExtensionName_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698