Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_gen.h

Issue 465040: Added CommandBufferClient, CommandBufferStub and some IPC messages.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation.cc ('k') | gpu/command_buffer/client/gles2_lib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698