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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h

Issue 2320663002: Fix performance regression in WebGL to 2D canvas draws. (Closed)
Patch Set: Created 4 years, 3 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 /* 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); 404 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
405 public: 405 public:
406 Member<WebGLTexture> m_texture2DBinding; 406 Member<WebGLTexture> m_texture2DBinding;
407 Member<WebGLTexture> m_textureCubeMapBinding; 407 Member<WebGLTexture> m_textureCubeMapBinding;
408 Member<WebGLTexture> m_texture3DBinding; 408 Member<WebGLTexture> m_texture3DBinding;
409 Member<WebGLTexture> m_texture2DArrayBinding; 409 Member<WebGLTexture> m_texture2DArrayBinding;
410 410
411 DECLARE_TRACE(); 411 DECLARE_TRACE();
412 }; 412 };
413 413
414 PassRefPtr<Image> getImage(SnapshotReason) const override; 414 PassRefPtr<Image> getImage(AccelerationHint, SnapshotReason) const override;
415 void setFilterQuality(SkFilterQuality) override; 415 void setFilterQuality(SkFilterQuality) override;
416 bool isWebGL2OrHigher() { return version() >= 2; } 416 bool isWebGL2OrHigher() { return version() >= 2; }
417 417
418 void getHTMLOrOffscreenCanvas(HTMLCanvasElementOrOffscreenCanvas&) const; 418 void getHTMLOrOffscreenCanvas(HTMLCanvasElementOrOffscreenCanvas&) const;
419 419
420 protected: 420 protected:
421 friend class EXTDisjointTimerQuery; 421 friend class EXTDisjointTimerQuery;
422 friend class WebGLDrawBuffers; 422 friend class WebGLDrawBuffers;
423 friend class WebGLFramebuffer; 423 friend class WebGLFramebuffer;
424 friend class WebGLObject; 424 friend class WebGLObject;
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 bool isPaintable() const final { return drawingBuffer(); } 1101 bool isPaintable() const final { return drawingBuffer(); }
1102 }; 1102 };
1103 1103
1104 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co ntext->is3d(), context.is3d()); 1104 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co ntext->is3d(), context.is3d());
1105 1105
1106 } // namespace blink 1106 } // namespace blink
1107 1107
1108 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::WebGLRenderingContextB ase::TextureUnitState); 1108 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::WebGLRenderingContextB ase::TextureUnitState);
1109 1109
1110 #endif // WebGLRenderingContextBase_h 1110 #endif // WebGLRenderingContextBase_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698