| 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 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 Vector<GLenum> lost_context_errors_; | 927 Vector<GLenum> lost_context_errors_; |
| 928 // Other errors raised by synthesizeGLError(). | 928 // Other errors raised by synthesizeGLError(). |
| 929 Vector<GLenum> synthetic_errors_; | 929 Vector<GLenum> synthetic_errors_; |
| 930 | 930 |
| 931 bool is_web_gl2_formats_types_added_; | 931 bool is_web_gl2_formats_types_added_; |
| 932 bool is_web_gl2_tex_image_source_formats_types_added_; | 932 bool is_web_gl2_tex_image_source_formats_types_added_; |
| 933 bool is_web_gl2_internal_formats_copy_tex_image_added_; | 933 bool is_web_gl2_internal_formats_copy_tex_image_added_; |
| 934 bool is_oes_texture_float_formats_types_added_; | 934 bool is_oes_texture_float_formats_types_added_; |
| 935 bool is_oes_texture_half_float_formats_types_added_; | 935 bool is_oes_texture_half_float_formats_types_added_; |
| 936 bool is_web_gl_depth_texture_formats_types_added_; | 936 bool is_web_gl_depth_texture_formats_types_added_; |
| 937 bool is_ex_ts_rgb_formats_types_added_; | 937 bool is_ext_srgb_formats_types_added_; |
| 938 | 938 |
| 939 std::set<GLenum> supported_internal_formats_; | 939 std::set<GLenum> supported_internal_formats_; |
| 940 std::set<GLenum> supported_tex_image_source_internal_formats_; | 940 std::set<GLenum> supported_tex_image_source_internal_formats_; |
| 941 std::set<GLenum> supported_internal_formats_copy_tex_image_; | 941 std::set<GLenum> supported_internal_formats_copy_tex_image_; |
| 942 std::set<GLenum> supported_formats_; | 942 std::set<GLenum> supported_formats_; |
| 943 std::set<GLenum> supported_tex_image_source_formats_; | 943 std::set<GLenum> supported_tex_image_source_formats_; |
| 944 std::set<GLenum> supported_types_; | 944 std::set<GLenum> supported_types_; |
| 945 std::set<GLenum> supported_tex_image_source_types_; | 945 std::set<GLenum> supported_tex_image_source_types_; |
| 946 | 946 |
| 947 // Helpers for getParameter and others | 947 // Helpers for getParameter and others |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 context, | 1670 context, |
| 1671 context->Is3d(), | 1671 context->Is3d(), |
| 1672 context.Is3d()); | 1672 context.Is3d()); |
| 1673 | 1673 |
| 1674 } // namespace blink | 1674 } // namespace blink |
| 1675 | 1675 |
| 1676 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS( | 1676 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS( |
| 1677 blink::WebGLRenderingContextBase::TextureUnitState); | 1677 blink::WebGLRenderingContextBase::TextureUnitState); |
| 1678 | 1678 |
| 1679 #endif // WebGLRenderingContextBase_h | 1679 #endif // WebGLRenderingContextBase_h |
| OLD | NEW |