OLD | NEW |
1 | 1 |
2 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 2 // 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 | 3 // Use of this source code is governed by a BSD-style license that can be |
4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
5 | 5 |
6 | 6 |
7 // A class to emluate GLES2 over command buffers. | 7 // A class to emluate GLES2 over command buffers. |
8 | 8 |
9 #include "gpu/command_buffer/client/gles2_implementation.h" | 9 #include "gpu/command_buffer/client/gles2_implementation.h" |
10 | 10 |
11 namespace command_buffer { | 11 namespace gpu { |
12 namespace gles2 { | 12 namespace gles2 { |
13 | 13 |
14 GLenum GLES2Implementation::CheckFramebufferStatus(GLenum target) { | 14 GLenum GLES2Implementation::CheckFramebufferStatus(GLenum target) { |
15 return 0; | 15 return 0; |
16 } | 16 } |
17 | 17 |
18 void GLES2Implementation::GetActiveAttrib( | 18 void GLES2Implementation::GetActiveAttrib( |
19 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, | 19 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, |
20 GLenum* type, char* name) { | 20 GLenum* type, char* name) { |
21 } | 21 } |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 GLuint index, GLenum pname, void** pointer) { | 61 GLuint index, GLenum pname, void** pointer) { |
62 } | 62 } |
63 | 63 |
64 void GLES2Implementation::ReadPixels( | 64 void GLES2Implementation::ReadPixels( |
65 GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, | 65 GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, |
66 void* pixels) { | 66 void* pixels) { |
67 } | 67 } |
68 | 68 |
69 | 69 |
70 } // namespace gles2 | 70 } // namespace gles2 |
71 } // namespace command_buffer | 71 } // namespace gpu |
72 | 72 |
OLD | NEW |