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

Side by Side Diff: mojo/gpu/mojo_gles2_impl_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 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) override; 711 GLboolean unpack_unmultiply_alpha) override;
712 void CompressedCopyTextureCHROMIUM(GLenum target, 712 void CompressedCopyTextureCHROMIUM(GLenum target,
713 GLenum source_id, 713 GLenum source_id,
714 GLenum dest_id) override; 714 GLenum dest_id) override;
715 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) override;
715 void DrawArraysInstancedANGLE(GLenum mode, 724 void DrawArraysInstancedANGLE(GLenum mode,
716 GLint first, 725 GLint first,
717 GLsizei count, 726 GLsizei count,
718 GLsizei primcount) override; 727 GLsizei primcount) override;
719 void DrawElementsInstancedANGLE(GLenum mode, 728 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) override; 732 GLsizei primcount) override;
724 void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) override; 733 void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) override;
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 GLenum coverMode) override; 832 GLenum coverMode) override;
824 GLenum GetGraphicsResetStatusKHR() override; 833 GLenum GetGraphicsResetStatusKHR() override;
825 void BlendBarrierKHR() override; 834 void BlendBarrierKHR() override;
826 835
827 private: 836 private:
828 MojoGLES2Context context_; 837 MojoGLES2Context context_;
829 }; 838 };
830 839
831 } // namespace mojo 840 } // namespace mojo
832 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_ 841 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698