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

Side by Side Diff: Source/modules/webgl/WebGL2RenderingContext.h

Issue 1265703005: Implement the texture uploading of ASTC compression for WebGL(part II) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Clean and Remove unnecessary enum. Created 5 years, 4 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebGL2RenderingContext_h 5 #ifndef WebGL2RenderingContext_h
6 #define WebGL2RenderingContext_h 6 #define WebGL2RenderingContext_h
7 7
8 #include "core/html/canvas/CanvasRenderingContextFactory.h" 8 #include "core/html/canvas/CanvasRenderingContextFactory.h"
9 #include "modules/webgl/WebGL2RenderingContextBase.h" 9 #include "modules/webgl/WebGL2RenderingContextBase.h"
10 10
(...skipping 23 matching lines...) Expand all
34 void registerContextExtensions() override; 34 void registerContextExtensions() override;
35 35
36 DECLARE_VIRTUAL_TRACE(); 36 DECLARE_VIRTUAL_TRACE();
37 37
38 protected: 38 protected:
39 WebGL2RenderingContext(HTMLCanvasElement* passedCanvas, PassOwnPtr<WebGraphi csContext3D>, const WebGLContextAttributes& requestedAttributes); 39 WebGL2RenderingContext(HTMLCanvasElement* passedCanvas, PassOwnPtr<WebGraphi csContext3D>, const WebGLContextAttributes& requestedAttributes);
40 40
41 RefPtrWillBeMember<CHROMIUMSubscribeUniform> m_chromiumSubscribeUniform; 41 RefPtrWillBeMember<CHROMIUMSubscribeUniform> m_chromiumSubscribeUniform;
42 RefPtrWillBeMember<EXTTextureFilterAnisotropic> m_extTextureFilterAnisotropi c; 42 RefPtrWillBeMember<EXTTextureFilterAnisotropic> m_extTextureFilterAnisotropi c;
43 RefPtrWillBeMember<OESTextureFloatLinear> m_oesTextureFloatLinear; 43 RefPtrWillBeMember<OESTextureFloatLinear> m_oesTextureFloatLinear;
44 RefPtrWillBeMember<WebGLCompressedTextureASTC> m_webglCompressedTextureASTC;
44 RefPtrWillBeMember<WebGLCompressedTextureATC> m_webglCompressedTextureATC; 45 RefPtrWillBeMember<WebGLCompressedTextureATC> m_webglCompressedTextureATC;
45 RefPtrWillBeMember<WebGLCompressedTextureETC1> m_webglCompressedTextureETC1; 46 RefPtrWillBeMember<WebGLCompressedTextureETC1> m_webglCompressedTextureETC1;
46 RefPtrWillBeMember<WebGLCompressedTexturePVRTC> m_webglCompressedTexturePVRT C; 47 RefPtrWillBeMember<WebGLCompressedTexturePVRTC> m_webglCompressedTexturePVRT C;
47 RefPtrWillBeMember<WebGLCompressedTextureS3TC> m_webglCompressedTextureS3TC; 48 RefPtrWillBeMember<WebGLCompressedTextureS3TC> m_webglCompressedTextureS3TC;
48 RefPtrWillBeMember<WebGLDebugRendererInfo> m_webglDebugRendererInfo; 49 RefPtrWillBeMember<WebGLDebugRendererInfo> m_webglDebugRendererInfo;
49 RefPtrWillBeMember<WebGLDebugShaders> m_webglDebugShaders; 50 RefPtrWillBeMember<WebGLDebugShaders> m_webglDebugShaders;
50 RefPtrWillBeMember<WebGLLoseContext> m_webglLoseContext; 51 RefPtrWillBeMember<WebGLLoseContext> m_webglLoseContext;
51 }; 52 };
52 53
53 DEFINE_TYPE_CASTS(WebGL2RenderingContext, CanvasRenderingContext, context, 54 DEFINE_TYPE_CASTS(WebGL2RenderingContext, CanvasRenderingContext, context,
54 context->is3d() && WebGLRenderingContextBase::getWebGLVersion(context) == 2, 55 context->is3d() && WebGLRenderingContextBase::getWebGLVersion(context) == 2,
55 context.is3d() && WebGLRenderingContextBase::getWebGLVersion(&context) == 2) ; 56 context.is3d() && WebGLRenderingContextBase::getWebGLVersion(&context) == 2) ;
56 57
57 } // namespace blink 58 } // namespace blink
58 59
59 #endif 60 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698