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

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

Issue 2639973002: Add target argument to Copy{Sub}TextureCHROMIUM entry point (Closed)
Patch Set: use dest_target instead of target Created 3 years, 11 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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 virtual void GetTranslatedShaderSourceANGLE(GLuint shader, 683 virtual void GetTranslatedShaderSourceANGLE(GLuint shader,
684 GLsizei bufsize, 684 GLsizei bufsize,
685 GLsizei* length, 685 GLsizei* length,
686 char* source) = 0; 686 char* source) = 0;
687 virtual void PostSubBufferCHROMIUM(GLint x, 687 virtual void PostSubBufferCHROMIUM(GLint x,
688 GLint y, 688 GLint y,
689 GLint width, 689 GLint width,
690 GLint height) = 0; 690 GLint height) = 0;
691 virtual void CopyTextureCHROMIUM(GLenum source_id, 691 virtual void CopyTextureCHROMIUM(GLenum source_id,
692 GLint source_level, 692 GLint source_level,
693 GLenum dest_target,
693 GLenum dest_id, 694 GLenum dest_id,
694 GLint dest_level, 695 GLint dest_level,
695 GLint internalformat, 696 GLint internalformat,
696 GLenum dest_type, 697 GLenum dest_type,
697 GLboolean unpack_flip_y, 698 GLboolean unpack_flip_y,
698 GLboolean unpack_premultiply_alpha, 699 GLboolean unpack_premultiply_alpha,
699 GLboolean unpack_unmultiply_alpha) = 0; 700 GLboolean unpack_unmultiply_alpha) = 0;
700 virtual void CopySubTextureCHROMIUM(GLenum source_id, 701 virtual void CopySubTextureCHROMIUM(GLenum source_id,
701 GLint source_level, 702 GLint source_level,
703 GLenum dest_target,
702 GLenum dest_id, 704 GLenum dest_id,
703 GLint dest_level, 705 GLint dest_level,
704 GLint xoffset, 706 GLint xoffset,
705 GLint yoffset, 707 GLint yoffset,
706 GLint x, 708 GLint x,
707 GLint y, 709 GLint y,
708 GLsizei width, 710 GLsizei width,
709 GLsizei height, 711 GLsizei height,
710 GLboolean unpack_flip_y, 712 GLboolean unpack_flip_y,
711 GLboolean unpack_premultiply_alpha, 713 GLboolean unpack_premultiply_alpha,
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 const GLfloat* transform) = 0; 894 const GLfloat* transform) = 0;
893 virtual void OverlayPromotionHintCHROMIUM(GLuint texture, 895 virtual void OverlayPromotionHintCHROMIUM(GLuint texture,
894 GLboolean promotion_hint, 896 GLboolean promotion_hint,
895 GLint display_x, 897 GLint display_x,
896 GLint display_y) = 0; 898 GLint display_y) = 0;
897 virtual void SwapBuffersWithDamageCHROMIUM(GLint x, 899 virtual void SwapBuffersWithDamageCHROMIUM(GLint x,
898 GLint y, 900 GLint y,
899 GLint width, 901 GLint width,
900 GLint height) = 0; 902 GLint height) = 0;
901 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 903 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698