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

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

Issue 864513004: gpu: introduce glCopySubTextureCHROMIUM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address concerns of owners Created 5 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 GLsizei width, 604 GLsizei width,
605 GLsizei height, 605 GLsizei height,
606 GLuint ioSurfaceId, 606 GLuint ioSurfaceId,
607 GLuint plane) = 0; 607 GLuint plane) = 0;
608 virtual void CopyTextureCHROMIUM(GLenum target, 608 virtual void CopyTextureCHROMIUM(GLenum target,
609 GLenum source_id, 609 GLenum source_id,
610 GLenum dest_id, 610 GLenum dest_id,
611 GLint level, 611 GLint level,
612 GLint internalformat, 612 GLint internalformat,
613 GLenum dest_type) = 0; 613 GLenum dest_type) = 0;
614 virtual void CopySubTextureCHROMIUM(GLenum target,
615 GLenum source_id,
616 GLenum dest_id,
617 GLint level,
618 GLint xoffset,
619 GLint yoffset) = 0;
614 virtual void DrawArraysInstancedANGLE(GLenum mode, 620 virtual void DrawArraysInstancedANGLE(GLenum mode,
615 GLint first, 621 GLint first,
616 GLsizei count, 622 GLsizei count,
617 GLsizei primcount) = 0; 623 GLsizei primcount) = 0;
618 virtual void DrawElementsInstancedANGLE(GLenum mode, 624 virtual void DrawElementsInstancedANGLE(GLenum mode,
619 GLsizei count, 625 GLsizei count,
620 GLenum type, 626 GLenum type,
621 const void* indices, 627 const void* indices,
622 GLsizei primcount) = 0; 628 GLsizei primcount) = 0;
623 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0; 629 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 GLint bounds_height, 690 GLint bounds_height,
685 GLfloat uv_x, 691 GLfloat uv_x,
686 GLfloat uv_y, 692 GLfloat uv_y,
687 GLfloat uv_width, 693 GLfloat uv_width,
688 GLfloat uv_height) = 0; 694 GLfloat uv_height) = 0;
689 virtual void SwapInterval(GLint interval) = 0; 695 virtual void SwapInterval(GLint interval) = 0;
690 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0; 696 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0;
691 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0; 697 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0;
692 virtual void BlendBarrierKHR() = 0; 698 virtual void BlendBarrierKHR() = 0;
693 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 699 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698