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

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

Issue 1143373004: gpu: Extend CopyTextureCHROMIUM with support for copying part of source texture. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: keep TODO for now Created 5 years, 7 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 GLuint plane) = 0; 679 GLuint plane) = 0;
680 virtual void CopyTextureCHROMIUM(GLenum target, 680 virtual void CopyTextureCHROMIUM(GLenum target,
681 GLenum source_id, 681 GLenum source_id,
682 GLenum dest_id, 682 GLenum dest_id,
683 GLint internalformat, 683 GLint internalformat,
684 GLenum dest_type) = 0; 684 GLenum dest_type) = 0;
685 virtual void CopySubTextureCHROMIUM(GLenum target, 685 virtual void CopySubTextureCHROMIUM(GLenum target,
686 GLenum source_id, 686 GLenum source_id,
687 GLenum dest_id, 687 GLenum dest_id,
688 GLint xoffset, 688 GLint xoffset,
689 GLint yoffset) = 0; 689 GLint yoffset,
690 GLint x,
691 GLint y,
692 GLsizei width,
693 GLsizei height) = 0;
690 virtual void DrawArraysInstancedANGLE(GLenum mode, 694 virtual void DrawArraysInstancedANGLE(GLenum mode,
691 GLint first, 695 GLint first,
692 GLsizei count, 696 GLsizei count,
693 GLsizei primcount) = 0; 697 GLsizei primcount) = 0;
694 virtual void DrawElementsInstancedANGLE(GLenum mode, 698 virtual void DrawElementsInstancedANGLE(GLenum mode,
695 GLsizei count, 699 GLsizei count,
696 GLenum type, 700 GLenum type,
697 const void* indices, 701 const void* indices,
698 GLsizei primcount) = 0; 702 GLsizei primcount) = 0;
699 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0; 703 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 GLint bounds_height, 764 GLint bounds_height,
761 GLfloat uv_x, 765 GLfloat uv_x,
762 GLfloat uv_y, 766 GLfloat uv_y,
763 GLfloat uv_width, 767 GLfloat uv_width,
764 GLfloat uv_height) = 0; 768 GLfloat uv_height) = 0;
765 virtual void SwapInterval(GLint interval) = 0; 769 virtual void SwapInterval(GLint interval) = 0;
766 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0; 770 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0;
767 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0; 771 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0;
768 virtual void BlendBarrierKHR() = 0; 772 virtual void BlendBarrierKHR() = 0;
769 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 773 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698