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

Side by Side Diff: mojo/gpu/mojo_gles2_impl_autogen.h

Issue 1119723003: Add glCopyCompressedTextureCHROMIUM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments in tests Created 5 years, 6 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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 void CopyTextureCHROMIUM(GLenum target, 671 void CopyTextureCHROMIUM(GLenum target,
672 GLenum source_id, 672 GLenum source_id,
673 GLenum dest_id, 673 GLenum dest_id,
674 GLint internalformat, 674 GLint internalformat,
675 GLenum dest_type) override; 675 GLenum dest_type) override;
676 void CopySubTextureCHROMIUM(GLenum target, 676 void CopySubTextureCHROMIUM(GLenum target,
677 GLenum source_id, 677 GLenum source_id,
678 GLenum dest_id, 678 GLenum dest_id,
679 GLint xoffset, 679 GLint xoffset,
680 GLint yoffset) override; 680 GLint yoffset) override;
681 void CopyCompressedTextureCHROMIUM(GLenum target,
682 GLenum source_id,
683 GLenum dest_id,
684 GLenum internalformat,
685 GLenum dest_type,
686 GLsizei source_size) override;
681 void DrawArraysInstancedANGLE(GLenum mode, 687 void DrawArraysInstancedANGLE(GLenum mode,
682 GLint first, 688 GLint first,
683 GLsizei count, 689 GLsizei count,
684 GLsizei primcount) override; 690 GLsizei primcount) override;
685 void DrawElementsInstancedANGLE(GLenum mode, 691 void DrawElementsInstancedANGLE(GLenum mode,
686 GLsizei count, 692 GLsizei count,
687 GLenum type, 693 GLenum type,
688 const void* indices, 694 const void* indices,
689 GLsizei primcount) override; 695 GLsizei primcount) override;
690 void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) override; 696 void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) override;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 763 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
758 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 764 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
759 void BlendBarrierKHR() override; 765 void BlendBarrierKHR() override;
760 766
761 private: 767 private:
762 MojoGLES2Context context_; 768 MojoGLES2Context context_;
763 }; 769 };
764 770
765 } // namespace mojo 771 } // namespace mojo
766 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_ 772 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698