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

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

Issue 255713008: Change glimage to accept a type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 6 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 | Annotate | Revision Log
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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 virtual void RegisterSharedIdsCHROMIUM(GLuint namespace_id, 565 virtual void RegisterSharedIdsCHROMIUM(GLuint namespace_id,
566 GLsizei n, 566 GLsizei n,
567 const GLuint* ids) OVERRIDE; 567 const GLuint* ids) OVERRIDE;
568 568
569 virtual GLboolean EnableFeatureCHROMIUM(const char* feature) OVERRIDE; 569 virtual GLboolean EnableFeatureCHROMIUM(const char* feature) OVERRIDE;
570 570
571 virtual void* MapBufferCHROMIUM(GLuint target, GLenum access) OVERRIDE; 571 virtual void* MapBufferCHROMIUM(GLuint target, GLenum access) OVERRIDE;
572 572
573 virtual GLboolean UnmapBufferCHROMIUM(GLuint target) OVERRIDE; 573 virtual GLboolean UnmapBufferCHROMIUM(GLuint target) OVERRIDE;
574 574
575 virtual void* MapImageCHROMIUM(GLuint image_id, GLenum access) OVERRIDE; 575 virtual void* MapImageCHROMIUM(GLuint image_id) OVERRIDE;
576 576
577 virtual void UnmapImageCHROMIUM(GLuint image_id) OVERRIDE; 577 virtual void UnmapImageCHROMIUM(GLuint image_id) OVERRIDE;
578 578
579 virtual void* MapBufferSubDataCHROMIUM(GLuint target, 579 virtual void* MapBufferSubDataCHROMIUM(GLuint target,
580 GLintptr offset, 580 GLintptr offset,
581 GLsizeiptr size, 581 GLsizeiptr size,
582 GLenum access) OVERRIDE; 582 GLenum access) OVERRIDE;
583 583
584 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) OVERRIDE; 584 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) OVERRIDE;
585 585
(...skipping 26 matching lines...) Expand all
612 612
613 virtual void GetProgramInfoCHROMIUM(GLuint program, 613 virtual void GetProgramInfoCHROMIUM(GLuint program,
614 GLsizei bufsize, 614 GLsizei bufsize,
615 GLsizei* size, 615 GLsizei* size,
616 void* info) OVERRIDE; 616 void* info) OVERRIDE;
617 617
618 virtual GLuint CreateStreamTextureCHROMIUM(GLuint texture) OVERRIDE; 618 virtual GLuint CreateStreamTextureCHROMIUM(GLuint texture) OVERRIDE;
619 619
620 virtual GLuint CreateImageCHROMIUM(GLsizei width, 620 virtual GLuint CreateImageCHROMIUM(GLsizei width,
621 GLsizei height, 621 GLsizei height,
622 GLenum internalformat) OVERRIDE; 622 GLenum internalformat,
623 GLenum usage) OVERRIDE;
623 624
624 virtual void DestroyImageCHROMIUM(GLuint image_id) OVERRIDE; 625 virtual void DestroyImageCHROMIUM(GLuint image_id) OVERRIDE;
625 626
626 virtual void GetImageParameterivCHROMIUM(GLuint image_id, 627 virtual void GetImageParameterivCHROMIUM(GLuint image_id,
627 GLenum pname, 628 GLenum pname,
628 GLint* params) OVERRIDE; 629 GLint* params) OVERRIDE;
629 630
630 virtual void GetTranslatedShaderSourceANGLE(GLuint shader, 631 virtual void GetTranslatedShaderSourceANGLE(GLuint shader,
631 GLsizei bufsize, 632 GLsizei bufsize,
632 GLsizei* length, 633 GLsizei* length,
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 GLint bounds_x, 728 GLint bounds_x,
728 GLint bounds_y, 729 GLint bounds_y,
729 GLint bounds_width, 730 GLint bounds_width,
730 GLint bounds_height, 731 GLint bounds_height,
731 GLfloat uv_x, 732 GLfloat uv_x,
732 GLfloat uv_y, 733 GLfloat uv_y,
733 GLfloat uv_width, 734 GLfloat uv_width,
734 GLfloat uv_height) OVERRIDE; 735 GLfloat uv_height) OVERRIDE;
735 736
736 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 737 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698