| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 unsigned overlay_texture_id, | 208 unsigned overlay_texture_id, |
| 209 const gfx::Rect& display_bounds, | 209 const gfx::Rect& display_bounds, |
| 210 const gfx::RectF& uv_rect) override; | 210 const gfx::RectF& uv_rect) override; |
| 211 GLuint InsertFutureSyncPointCHROMIUM() override; | 211 GLuint InsertFutureSyncPointCHROMIUM() override; |
| 212 void RetireSyncPointCHROMIUM(GLuint sync_point) override; | 212 void RetireSyncPointCHROMIUM(GLuint sync_point) override; |
| 213 uint64_t ShareGroupTracingGUID() const override; | 213 uint64_t ShareGroupTracingGUID() const override; |
| 214 | 214 |
| 215 void GetProgramInfoCHROMIUMHelper(GLuint program, std::vector<int8>* result); | 215 void GetProgramInfoCHROMIUMHelper(GLuint program, std::vector<int8>* result); |
| 216 GLint GetAttribLocationHelper(GLuint program, const char* name); | 216 GLint GetAttribLocationHelper(GLuint program, const char* name); |
| 217 GLint GetUniformLocationHelper(GLuint program, const char* name); | 217 GLint GetUniformLocationHelper(GLuint program, const char* name); |
| 218 GLint GetFragDataIndexEXTHelper(GLuint program, const char* name); |
| 218 GLint GetFragDataLocationHelper(GLuint program, const char* name); | 219 GLint GetFragDataLocationHelper(GLuint program, const char* name); |
| 219 bool GetActiveAttribHelper( | 220 bool GetActiveAttribHelper( |
| 220 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, | 221 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, |
| 221 GLint* size, GLenum* type, char* name); | 222 GLint* size, GLenum* type, char* name); |
| 222 bool GetActiveUniformHelper( | 223 bool GetActiveUniformHelper( |
| 223 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, | 224 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, |
| 224 GLint* size, GLenum* type, char* name); | 225 GLint* size, GLenum* type, char* name); |
| 225 void GetUniformBlocksCHROMIUMHelper( | 226 void GetUniformBlocksCHROMIUMHelper( |
| 226 GLuint program, std::vector<int8>* result); | 227 GLuint program, std::vector<int8>* result); |
| 227 void GetUniformsES3CHROMIUMHelper( | 228 void GetUniformsES3CHROMIUMHelper( |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 | 856 |
| 856 inline bool GLES2Implementation::GetTexParameterivHelper( | 857 inline bool GLES2Implementation::GetTexParameterivHelper( |
| 857 GLenum /* target */, GLenum /* pname */, GLint* /* params */) { | 858 GLenum /* target */, GLenum /* pname */, GLint* /* params */) { |
| 858 return false; | 859 return false; |
| 859 } | 860 } |
| 860 | 861 |
| 861 } // namespace gles2 | 862 } // namespace gles2 |
| 862 } // namespace gpu | 863 } // namespace gpu |
| 863 | 864 |
| 864 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ | 865 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ |
| OLD | NEW |