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: gpu/command_buffer/client/gles2_interface_autogen.h

Issue 1331843005: Implemented new fence syncs which replaces the old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some fixes Created 5 years, 3 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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 virtual void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) = 0; 756 virtual void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) = 0;
757 virtual void TraceBeginCHROMIUM(const char* category_name, 757 virtual void TraceBeginCHROMIUM(const char* category_name,
758 const char* trace_name) = 0; 758 const char* trace_name) = 0;
759 virtual void TraceEndCHROMIUM() = 0; 759 virtual void TraceEndCHROMIUM() = 0;
760 virtual void DiscardFramebufferEXT(GLenum target, 760 virtual void DiscardFramebufferEXT(GLenum target,
761 GLsizei count, 761 GLsizei count,
762 const GLenum* attachments) = 0; 762 const GLenum* attachments) = 0;
763 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0; 763 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0;
764 virtual GLuint InsertSyncPointCHROMIUM() = 0; 764 virtual GLuint InsertSyncPointCHROMIUM() = 0;
765 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0; 765 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0;
766 virtual GLuint InsertFenceSyncCHROMIUM() = 0;
767 virtual void GenSyncTokenCHROMIUM(GLuint fence_sync, GLbyte* sync_token) = 0;
768 virtual void WaitSyncTokenCHROMIUM(const GLbyte* sync_token) = 0;
766 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0; 769 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0;
767 virtual void DiscardBackbufferCHROMIUM() = 0; 770 virtual void DiscardBackbufferCHROMIUM() = 0;
768 virtual void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order, 771 virtual void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
769 GLenum plane_transform, 772 GLenum plane_transform,
770 GLuint overlay_texture_id, 773 GLuint overlay_texture_id,
771 GLint bounds_x, 774 GLint bounds_x,
772 GLint bounds_y, 775 GLint bounds_y,
773 GLint bounds_width, 776 GLint bounds_width,
774 GLint bounds_height, 777 GLint bounds_height,
775 GLfloat uv_x, 778 GLfloat uv_x,
(...skipping 30 matching lines...) Expand all
806 GLenum fillMode, 809 GLenum fillMode,
807 GLuint mask, 810 GLuint mask,
808 GLenum coverMode) = 0; 811 GLenum coverMode) = 0;
809 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path, 812 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path,
810 GLint reference, 813 GLint reference,
811 GLuint mask, 814 GLuint mask,
812 GLenum coverMode) = 0; 815 GLenum coverMode) = 0;
813 virtual GLenum GetGraphicsResetStatusKHR() = 0; 816 virtual GLenum GetGraphicsResetStatusKHR() = 0;
814 virtual void BlendBarrierKHR() = 0; 817 virtual void BlendBarrierKHR() = 0;
815 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 818 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698