| 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 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 Loading... |
| 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 |
| OLD | NEW |