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

Side by Side Diff: mojo/gpu/mojo_gles2_impl_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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 GLuint plane) override; 684 GLuint plane) override;
685 void CopyTextureCHROMIUM(GLenum target, 685 void CopyTextureCHROMIUM(GLenum target,
686 GLenum source_id, 686 GLenum source_id,
687 GLenum dest_id, 687 GLenum dest_id,
688 GLint internalformat, 688 GLint internalformat,
689 GLenum dest_type) override; 689 GLenum dest_type) override;
690 void CopySubTextureCHROMIUM(GLenum target, 690 void CopySubTextureCHROMIUM(GLenum target,
691 GLenum source_id, 691 GLenum source_id,
692 GLenum dest_id, 692 GLenum dest_id,
693 GLint xoffset, 693 GLint xoffset,
694 GLint yoffset) override; 694 GLint yoffset,
695 GLint x,
696 GLint y,
697 GLsizei width,
698 GLsizei height) override;
695 void DrawArraysInstancedANGLE(GLenum mode, 699 void DrawArraysInstancedANGLE(GLenum mode,
696 GLint first, 700 GLint first,
697 GLsizei count, 701 GLsizei count,
698 GLsizei primcount) override; 702 GLsizei primcount) override;
699 void DrawElementsInstancedANGLE(GLenum mode, 703 void DrawElementsInstancedANGLE(GLenum mode,
700 GLsizei count, 704 GLsizei count,
701 GLenum type, 705 GLenum type,
702 const void* indices, 706 const void* indices,
703 GLsizei primcount) override; 707 GLsizei primcount) override;
704 void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) override; 708 void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) override;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 775 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
772 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 776 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
773 void BlendBarrierKHR() override; 777 void BlendBarrierKHR() override;
774 778
775 private: 779 private:
776 MojoGLES2Context context_; 780 MojoGLES2Context context_;
777 }; 781 };
778 782
779 } // namespace mojo 783 } // namespace mojo
780 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_ 784 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc ('k') | mojo/gpu/mojo_gles2_impl_autogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698