OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ | 5 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ |
6 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ | 6 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <queue> | 10 #include <queue> |
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 | 684 |
685 ExtensionStatus angle_pack_reverse_row_order_status_; | 685 ExtensionStatus angle_pack_reverse_row_order_status_; |
686 ExtensionStatus chromium_framebuffer_multisample_; | 686 ExtensionStatus chromium_framebuffer_multisample_; |
687 | 687 |
688 GLStaticState static_state_; | 688 GLStaticState static_state_; |
689 ClientContextState state_; | 689 ClientContextState state_; |
690 | 690 |
691 // pack alignment as last set by glPixelStorei | 691 // pack alignment as last set by glPixelStorei |
692 GLint pack_alignment_; | 692 GLint pack_alignment_; |
693 | 693 |
694 // pack row length as last set by glPixelStorei | |
695 GLint pack_row_length_; | |
696 | |
697 // pack skip pixels as last set by glPixelStorei | |
698 GLint pack_skip_pixels_; | |
699 | |
700 // pack skip rows as last set by glPixelStorei | |
701 GLint pack_skip_rows_; | |
702 | |
703 // unpack alignment as last set by glPixelStorei | 694 // unpack alignment as last set by glPixelStorei |
704 GLint unpack_alignment_; | 695 GLint unpack_alignment_; |
705 | 696 |
706 // unpack row length as last set by glPixelStorei | 697 // unpack row length as last set by glPixelStorei |
707 GLint unpack_row_length_; | 698 GLint unpack_row_length_; |
708 | 699 |
709 // unpack image height as last set by glPixelStorei | 700 // unpack image height as last set by glPixelStorei |
710 GLint unpack_image_height_; | 701 GLint unpack_image_height_; |
711 | 702 |
712 // unpack skip rows as last set by glPixelStorei | 703 // unpack skip rows as last set by glPixelStorei |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 | 845 |
855 inline bool GLES2Implementation::GetTexParameterivHelper( | 846 inline bool GLES2Implementation::GetTexParameterivHelper( |
856 GLenum /* target */, GLenum /* pname */, GLint* /* params */) { | 847 GLenum /* target */, GLenum /* pname */, GLint* /* params */) { |
857 return false; | 848 return false; |
858 } | 849 } |
859 | 850 |
860 } // namespace gles2 | 851 } // namespace gles2 |
861 } // namespace gpu | 852 } // namespace gpu |
862 | 853 |
863 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ | 854 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ |
OLD | NEW |