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

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

Issue 1272153004: Add glCompressedCopySubTextureCHROMIUM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 GLint x, 705 GLint x,
706 GLint y, 706 GLint y,
707 GLsizei width, 707 GLsizei width,
708 GLsizei height, 708 GLsizei height,
709 GLboolean unpack_flip_y, 709 GLboolean unpack_flip_y,
710 GLboolean unpack_premultiply_alpha, 710 GLboolean unpack_premultiply_alpha,
711 GLboolean unpack_unmultiply_alpha) = 0; 711 GLboolean unpack_unmultiply_alpha) = 0;
712 virtual void CompressedCopyTextureCHROMIUM(GLenum target, 712 virtual void CompressedCopyTextureCHROMIUM(GLenum target,
713 GLenum source_id, 713 GLenum source_id,
714 GLenum dest_id) = 0; 714 GLenum dest_id) = 0;
715 virtual void CompressedCopySubTextureCHROMIUM(GLenum target,
716 GLenum source_id,
717 GLenum dest_id,
718 GLint xoffset,
719 GLint yoffset,
720 GLint x,
721 GLint y,
722 GLsizei width,
723 GLsizei height) = 0;
715 virtual void DrawArraysInstancedANGLE(GLenum mode, 724 virtual void DrawArraysInstancedANGLE(GLenum mode,
716 GLint first, 725 GLint first,
717 GLsizei count, 726 GLsizei count,
718 GLsizei primcount) = 0; 727 GLsizei primcount) = 0;
719 virtual void DrawElementsInstancedANGLE(GLenum mode, 728 virtual void DrawElementsInstancedANGLE(GLenum mode,
720 GLsizei count, 729 GLsizei count,
721 GLenum type, 730 GLenum type,
722 const void* indices, 731 const void* indices,
723 GLsizei primcount) = 0; 732 GLsizei primcount) = 0;
724 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0; 733 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 GLenum fillMode, 826 GLenum fillMode,
818 GLuint mask, 827 GLuint mask,
819 GLenum coverMode) = 0; 828 GLenum coverMode) = 0;
820 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path, 829 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path,
821 GLint reference, 830 GLint reference,
822 GLuint mask, 831 GLuint mask,
823 GLenum coverMode) = 0; 832 GLenum coverMode) = 0;
824 virtual GLenum GetGraphicsResetStatusKHR() = 0; 833 virtual GLenum GetGraphicsResetStatusKHR() = 0;
825 virtual void BlendBarrierKHR() = 0; 834 virtual void BlendBarrierKHR() = 0;
826 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 835 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698