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

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_decoder_validate.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 namespace command_buffer { 7 namespace gpu {
8 namespace gles2 { 8 namespace gles2 {
9 9
10 namespace { 10 namespace {
11 11
12 parse_error::ParseError ValidateActiveTexture( 12 parse_error::ParseError ValidateActiveTexture(
13 GLES2Decoder* decoder, uint32 immediate_data_size, GLenum texture) { 13 GLES2Decoder* decoder, uint32 immediate_data_size, GLenum texture) {
14 return parse_error::kParseNoError; 14 return parse_error::kParseNoError;
15 } 15 }
16 parse_error::ParseError ValidateAttachShader( 16 parse_error::ParseError ValidateAttachShader(
17 GLES2Decoder* decoder, uint32 immediate_data_size, GLuint program, 17 GLES2Decoder* decoder, uint32 immediate_data_size, GLuint program,
(...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 GLES2Decoder* decoder, uint32 immediate_data_size, GLint x, GLint y, 1251 GLES2Decoder* decoder, uint32 immediate_data_size, GLint x, GLint y,
1252 GLsizei width, GLsizei height) { 1252 GLsizei width, GLsizei height) {
1253 return parse_error::kParseNoError; 1253 return parse_error::kParseNoError;
1254 } 1254 }
1255 parse_error::ParseError ValidateSwapBuffers( 1255 parse_error::ParseError ValidateSwapBuffers(
1256 GLES2Decoder* decoder, uint32 immediate_data_size) { 1256 GLES2Decoder* decoder, uint32 immediate_data_size) {
1257 return parse_error::kParseNoError; 1257 return parse_error::kParseNoError;
1258 } 1258 }
1259 } // anonymous namespace 1259 } // anonymous namespace
1260 } // namespace gles2 1260 } // namespace gles2
1261 } // namespace command_buffer 1261 } // namespace gpu
1262 1262
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/gpu_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698