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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 void setFilterQuality(SkFilterQuality) override; | 415 void setFilterQuality(SkFilterQuality) override; |
415 bool isWebGL2OrHigher() { return version() >= 2; } | 416 bool isWebGL2OrHigher() { return version() >= 2; } |
416 | 417 |
417 void getHTMLOrOffscreenCanvas(HTMLCanvasElementOrOffscreenCanvas&) const; | 418 void getHTMLOrOffscreenCanvas(HTMLCanvasElementOrOffscreenCanvas&) const; |
418 | 419 |
419 protected: | 420 protected: |
420 friend class EXTDisjointTimerQuery; | 421 friend class EXTDisjointTimerQuery; |
421 friend class WebGLDrawBuffers; | 422 friend class WebGLDrawBuffers; |
422 friend class WebGLFramebuffer; | 423 friend class WebGLFramebuffer; |
423 friend class WebGLObject; | 424 friend class WebGLObject; |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1029 String ensureNotNull(const String&) const; | 1030 String ensureNotNull(const String&) const; |
1030 | 1031 |
1031 // Enable or disable stencil test based on user setting and | 1032 // Enable or disable stencil test based on user setting and |
1032 // whether the current FBO has a stencil buffer. | 1033 // whether the current FBO has a stencil buffer. |
1033 void applyStencilTest(); | 1034 void applyStencilTest(); |
1034 | 1035 |
1035 // Helper for enabling or disabling a capability. | 1036 // Helper for enabling or disabling a capability. |
1036 void enableOrDisable(GLenum capability, bool enable); | 1037 void enableOrDisable(GLenum capability, bool enable); |
1037 | 1038 |
1038 // Clamp the width and height to GL_MAX_VIEWPORT_DIMS. | 1039 // Clamp the width and height to GL_MAX_VIEWPORT_DIMS. |
1039 IntSize clampedCanvasSize(); | 1040 IntSize clampedCanvasSize() const; |
1040 | 1041 |
1041 // First time called, if EXT_draw_buffers is supported, query the value; oth
erwise return 0. | 1042 // First time called, if EXT_draw_buffers is supported, query the value; oth
erwise return 0. |
1042 // Later, return the cached value. | 1043 // Later, return the cached value. |
1043 GLint maxDrawBuffers(); | 1044 GLint maxDrawBuffers(); |
1044 GLint maxColorAttachments(); | 1045 GLint maxColorAttachments(); |
1045 | 1046 |
1046 void setBackDrawBuffer(GLenum); | 1047 void setBackDrawBuffer(GLenum); |
1047 void setFramebuffer(GLenum, WebGLFramebuffer*); | 1048 void setFramebuffer(GLenum, WebGLFramebuffer*); |
1048 | 1049 |
1049 virtual void restoreCurrentFramebuffer(); | 1050 virtual void restoreCurrentFramebuffer(); |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1121 bool isPaintable() const final { return drawingBuffer(); } | 1122 bool isPaintable() const final { return drawingBuffer(); } |
1122 }; | 1123 }; |
1123 | 1124 |
1124 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co
ntext->is3d(), context.is3d()); | 1125 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co
ntext->is3d(), context.is3d()); |
1125 | 1126 |
1126 } // namespace blink | 1127 } // namespace blink |
1127 | 1128 |
1128 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::WebGLRenderingContextB
ase::TextureUnitState); | 1129 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::WebGLRenderingContextB
ase::TextureUnitState); |
1129 | 1130 |
1130 #endif // WebGLRenderingContextBase_h | 1131 #endif // WebGLRenderingContextBase_h |
OLD | NEW |