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

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: 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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 GLint x, 700 GLint x,
701 GLint y, 701 GLint y,
702 GLsizei width, 702 GLsizei width,
703 GLsizei height, 703 GLsizei height,
704 GLboolean unpack_flip_y, 704 GLboolean unpack_flip_y,
705 GLboolean unpack_premultiply_alpha, 705 GLboolean unpack_premultiply_alpha,
706 GLboolean unpack_unmultiply_alpha) = 0; 706 GLboolean unpack_unmultiply_alpha) = 0;
707 virtual void CompressedCopyTextureCHROMIUM(GLenum target, 707 virtual void CompressedCopyTextureCHROMIUM(GLenum target,
708 GLenum source_id, 708 GLenum source_id,
709 GLenum dest_id) = 0; 709 GLenum dest_id) = 0;
710 virtual void CompressedCopySubTextureCHROMIUM(GLenum target,
711 GLenum source_id,
712 GLenum dest_id,
713 GLint xoffset,
714 GLint yoffset,
715 GLint x,
716 GLint y,
717 GLsizei width,
718 GLsizei height) = 0;
710 virtual void DrawArraysInstancedANGLE(GLenum mode, 719 virtual void DrawArraysInstancedANGLE(GLenum mode,
711 GLint first, 720 GLint first,
712 GLsizei count, 721 GLsizei count,
713 GLsizei primcount) = 0; 722 GLsizei primcount) = 0;
714 virtual void DrawElementsInstancedANGLE(GLenum mode, 723 virtual void DrawElementsInstancedANGLE(GLenum mode,
715 GLsizei count, 724 GLsizei count,
716 GLenum type, 725 GLenum type,
717 const void* indices, 726 const void* indices,
718 GLsizei primcount) = 0; 727 GLsizei primcount) = 0;
719 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0; 728 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 GLenum fillMode, 821 GLenum fillMode,
813 GLuint mask, 822 GLuint mask,
814 GLenum coverMode) = 0; 823 GLenum coverMode) = 0;
815 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path, 824 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path,
816 GLint reference, 825 GLint reference,
817 GLuint mask, 826 GLuint mask,
818 GLenum coverMode) = 0; 827 GLenum coverMode) = 0;
819 virtual GLenum GetGraphicsResetStatusKHR() = 0; 828 virtual GLenum GetGraphicsResetStatusKHR() = 0;
820 virtual void BlendBarrierKHR() = 0; 829 virtual void BlendBarrierKHR() = 0;
821 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 830 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698