| OLD | NEW |
| 1 | |
| 2 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 3 // 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 |
| 4 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 5 | 4 |
| 5 // This file is auto-generated. DO NOT EDIT! |
| 6 | 6 |
| 7 // A class to emluate GLES2 over command buffers. | 7 // A class to emluate GLES2 over command buffers. |
| 8 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_GEN_H_ |
| 9 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_GEN_H_ |
| 8 | 10 |
| 9 #include "gpu/command_buffer/client/gles2_implementation.h" | 11 #include "gpu/command_buffer/client/gles2_implementation.h" |
| 10 | |
| 11 namespace gpu { | 12 namespace gpu { |
| 12 namespace gles2 { | 13 namespace gles2 { |
| 13 | 14 |
| 14 GLenum GLES2Implementation::CheckFramebufferStatus(GLenum target) { | 15 GLenum GLES2Implementation::CheckFramebufferStatus(GLenum target) { |
| 15 return 0; | 16 return 0; |
| 16 } | 17 } |
| 17 | 18 |
| 18 void GLES2Implementation::GetActiveAttrib( | 19 void GLES2Implementation::GetActiveAttrib( |
| 19 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, | 20 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, |
| 20 GLenum* type, char* name) { | 21 GLenum* type, char* name) { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 64 |
| 64 void GLES2Implementation::ReadPixels( | 65 void GLES2Implementation::ReadPixels( |
| 65 GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, | 66 GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, |
| 66 void* pixels) { | 67 void* pixels) { |
| 67 } | 68 } |
| 68 | 69 |
| 69 | 70 |
| 70 } // namespace gles2 | 71 } // namespace gles2 |
| 71 } // namespace gpu | 72 } // namespace gpu |
| 72 | 73 |
| 74 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_GEN_H_ |
| 75 |
| OLD | NEW |