| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // This file contains the GLES2Decoder class. | 5 // This file contains the GLES2Decoder class. |
| 6 | 6 |
| 7 #ifndef GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_H_ | 7 #ifndef GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_H_ |
| 8 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_H_ | 8 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_H_ |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 // Clears a level of a texture | 124 // Clears a level of a texture |
| 125 // Returns false if a GL error should be generated. | 125 // Returns false if a GL error should be generated. |
| 126 virtual bool ClearLevel( | 126 virtual bool ClearLevel( |
| 127 unsigned service_id, | 127 unsigned service_id, |
| 128 unsigned bind_target, | 128 unsigned bind_target, |
| 129 unsigned target, | 129 unsigned target, |
| 130 int level, | 130 int level, |
| 131 unsigned format, | 131 unsigned format, |
| 132 unsigned type, | 132 unsigned type, |
| 133 int width, | 133 int width, |
| 134 int height, | 134 int height) = 0; |
| 135 bool is_texture_immutable) = 0; | |
| 136 | 135 |
| 137 protected: | 136 protected: |
| 138 GLES2Decoder(); | 137 GLES2Decoder(); |
| 139 | 138 |
| 140 private: | 139 private: |
| 141 bool debug_; | 140 bool debug_; |
| 142 | 141 |
| 143 DISALLOW_COPY_AND_ASSIGN(GLES2Decoder); | 142 DISALLOW_COPY_AND_ASSIGN(GLES2Decoder); |
| 144 }; | 143 }; |
| 145 | 144 |
| 146 } // namespace gles2 | 145 } // namespace gles2 |
| 147 } // namespace gpu | 146 } // namespace gpu |
| 148 | 147 |
| 149 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_H_ | 148 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_H_ |
| OLD | NEW |