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

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

Issue 18492005: Add GL_EXT_multisampled_render_to_texture support to command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moved ahead to TOT Created 7 years, 5 months 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
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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 } 452 }
453 void GLES2InterfaceStub::BlitFramebufferEXT( 453 void GLES2InterfaceStub::BlitFramebufferEXT(
454 GLint /* srcX0 */, GLint /* srcY0 */, GLint /* srcX1 */, GLint /* srcY1 */, 454 GLint /* srcX0 */, GLint /* srcY0 */, GLint /* srcX1 */, GLint /* srcY1 */,
455 GLint /* dstX0 */, GLint /* dstY0 */, GLint /* dstX1 */, GLint /* dstY1 */, 455 GLint /* dstX0 */, GLint /* dstY0 */, GLint /* dstX1 */, GLint /* dstY1 */,
456 GLbitfield /* mask */, GLenum /* filter */) { 456 GLbitfield /* mask */, GLenum /* filter */) {
457 } 457 }
458 void GLES2InterfaceStub::RenderbufferStorageMultisampleEXT( 458 void GLES2InterfaceStub::RenderbufferStorageMultisampleEXT(
459 GLenum /* target */, GLsizei /* samples */, GLenum /* internalformat */, 459 GLenum /* target */, GLsizei /* samples */, GLenum /* internalformat */,
460 GLsizei /* width */, GLsizei /* height */) { 460 GLsizei /* width */, GLsizei /* height */) {
461 } 461 }
462 void GLES2InterfaceStub::FramebufferTexture2DMultisampleEXT(
463 GLenum /* target */, GLenum /* attachment */, GLenum /* textarget */,
464 GLuint /* texture */, GLint /* level */, GLsizei /* samples */) {
465 }
462 void GLES2InterfaceStub::TexStorage2DEXT( 466 void GLES2InterfaceStub::TexStorage2DEXT(
463 GLenum /* target */, GLsizei /* levels */, GLenum /* internalFormat */, 467 GLenum /* target */, GLsizei /* levels */, GLenum /* internalFormat */,
464 GLsizei /* width */, GLsizei /* height */) { 468 GLsizei /* width */, GLsizei /* height */) {
465 } 469 }
466 void GLES2InterfaceStub::GenQueriesEXT( 470 void GLES2InterfaceStub::GenQueriesEXT(
467 GLsizei /* n */, GLuint* /* queries */) { 471 GLsizei /* n */, GLuint* /* queries */) {
468 } 472 }
469 void GLES2InterfaceStub::DeleteQueriesEXT( 473 void GLES2InterfaceStub::DeleteQueriesEXT(
470 GLsizei /* n */, const GLuint* /* queries */) { 474 GLsizei /* n */, const GLuint* /* queries */) {
471 } 475 }
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 GLuint GLES2InterfaceStub::InsertSyncPointCHROMIUM() { 656 GLuint GLES2InterfaceStub::InsertSyncPointCHROMIUM() {
653 return 0; 657 return 0;
654 } 658 }
655 void GLES2InterfaceStub::WaitSyncPointCHROMIUM(GLuint /* sync_point */) { 659 void GLES2InterfaceStub::WaitSyncPointCHROMIUM(GLuint /* sync_point */) {
656 } 660 }
657 void GLES2InterfaceStub::DrawBuffersEXT( 661 void GLES2InterfaceStub::DrawBuffersEXT(
658 GLsizei /* count */, const GLenum* /* bufs */) { 662 GLsizei /* count */, const GLenum* /* bufs */) {
659 } 663 }
660 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 664 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
661 665
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698