| 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 |
| 694 // unpack alignment as last set by glPixelStorei | 703 // unpack alignment as last set by glPixelStorei |
| 695 GLint unpack_alignment_; | 704 GLint unpack_alignment_; |
| 696 | 705 |
| 697 // unpack row length as last set by glPixelStorei | 706 // unpack row length as last set by glPixelStorei |
| 698 GLint unpack_row_length_; | 707 GLint unpack_row_length_; |
| 699 | 708 |
| 700 // unpack image height as last set by glPixelStorei | 709 // unpack image height as last set by glPixelStorei |
| 701 GLint unpack_image_height_; | 710 GLint unpack_image_height_; |
| 702 | 711 |
| 703 // unpack skip rows as last set by glPixelStorei | 712 // unpack skip rows as last set by glPixelStorei |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 | 854 |
| 846 inline bool GLES2Implementation::GetTexParameterivHelper( | 855 inline bool GLES2Implementation::GetTexParameterivHelper( |
| 847 GLenum /* target */, GLenum /* pname */, GLint* /* params */) { | 856 GLenum /* target */, GLenum /* pname */, GLint* /* params */) { |
| 848 return false; | 857 return false; |
| 849 } | 858 } |
| 850 | 859 |
| 851 } // namespace gles2 | 860 } // namespace gles2 |
| 852 } // namespace gpu | 861 } // namespace gpu |
| 853 | 862 |
| 854 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ | 863 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ |
| OLD | NEW |