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

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

Issue 10440019: Add support for GL_CHROMIUM_pixel_transfer_buffer_object. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unnecessary change. Created 8 years, 1 month 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // 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
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is auto-generated from 5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py 6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // DO NOT EDIT! 7 // DO NOT EDIT!
8 8
9 // This file is included by gles2_interface_stub.cc. 9 // This file is included by gles2_interface_stub.cc.
10 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 10 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 void GLES2InterfaceStub::DeleteSharedIdsCHROMIUM( 513 void GLES2InterfaceStub::DeleteSharedIdsCHROMIUM(
514 GLuint /* namespace_id */, GLsizei /* n */, const GLuint* /* ids */) { 514 GLuint /* namespace_id */, GLsizei /* n */, const GLuint* /* ids */) {
515 } 515 }
516 void GLES2InterfaceStub::RegisterSharedIdsCHROMIUM( 516 void GLES2InterfaceStub::RegisterSharedIdsCHROMIUM(
517 GLuint /* namespace_id */, GLsizei /* n */, const GLuint* /* ids */) { 517 GLuint /* namespace_id */, GLsizei /* n */, const GLuint* /* ids */) {
518 } 518 }
519 GLboolean GLES2InterfaceStub::EnableFeatureCHROMIUM( 519 GLboolean GLES2InterfaceStub::EnableFeatureCHROMIUM(
520 const char* /* feature */) { 520 const char* /* feature */) {
521 return 0; 521 return 0;
522 } 522 }
523 void* GLES2InterfaceStub::MapBufferCHROMIUM(
524 GLuint /* target */, GLenum /* access */) {
525 return 0;
526 }
527 GLboolean GLES2InterfaceStub::UnmapBufferCHROMIUM(GLuint /* target */) {
528 return 0;
529 }
523 void* GLES2InterfaceStub::MapBufferSubDataCHROMIUM( 530 void* GLES2InterfaceStub::MapBufferSubDataCHROMIUM(
524 GLuint /* target */, GLintptr /* offset */, GLsizeiptr /* size */, 531 GLuint /* target */, GLintptr /* offset */, GLsizeiptr /* size */,
525 GLenum /* access */) { 532 GLenum /* access */) {
526 return 0; 533 return 0;
527 } 534 }
528 void GLES2InterfaceStub::UnmapBufferSubDataCHROMIUM(const void* /* mem */) { 535 void GLES2InterfaceStub::UnmapBufferSubDataCHROMIUM(const void* /* mem */) {
529 } 536 }
530 void* GLES2InterfaceStub::MapTexSubImage2DCHROMIUM( 537 void* GLES2InterfaceStub::MapTexSubImage2DCHROMIUM(
531 GLenum /* target */, GLint /* level */, GLint /* xoffset */, 538 GLenum /* target */, GLint /* level */, GLint /* xoffset */,
532 GLint /* yoffset */, GLsizei /* width */, GLsizei /* height */, 539 GLint /* yoffset */, GLsizei /* width */, GLsizei /* height */,
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 GLuint /* program */, GLint /* location */, const char* /* name */) { 604 GLuint /* program */, GLint /* location */, const char* /* name */) {
598 } 605 }
599 void GLES2InterfaceStub::BindTexImage2DCHROMIUM( 606 void GLES2InterfaceStub::BindTexImage2DCHROMIUM(
600 GLenum /* target */, GLint /* imageId */) { 607 GLenum /* target */, GLint /* imageId */) {
601 } 608 }
602 void GLES2InterfaceStub::ReleaseTexImage2DCHROMIUM( 609 void GLES2InterfaceStub::ReleaseTexImage2DCHROMIUM(
603 GLenum /* target */, GLint /* imageId */) { 610 GLenum /* target */, GLint /* imageId */) {
604 } 611 }
605 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 612 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
606 613
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698