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

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

Issue 1427543002: Modified old wait sync point functions to also accept new sync tokens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mock gpu video accelerator factory Created 5 years, 1 month 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 virtual void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) = 0; 754 virtual void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) = 0;
755 virtual void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) = 0; 755 virtual void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) = 0;
756 virtual void TraceBeginCHROMIUM(const char* category_name, 756 virtual void TraceBeginCHROMIUM(const char* category_name,
757 const char* trace_name) = 0; 757 const char* trace_name) = 0;
758 virtual void TraceEndCHROMIUM() = 0; 758 virtual void TraceEndCHROMIUM() = 0;
759 virtual void DiscardFramebufferEXT(GLenum target, 759 virtual void DiscardFramebufferEXT(GLenum target,
760 GLsizei count, 760 GLsizei count,
761 const GLenum* attachments) = 0; 761 const GLenum* attachments) = 0;
762 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0; 762 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0;
763 virtual GLuint InsertSyncPointCHROMIUM() = 0; 763 virtual GLuint InsertSyncPointCHROMIUM() = 0;
764 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0; 764 virtual void WaitSyncPointCHROMIUM(GLuint sync_point,
765 const GLbyte* sync_token) = 0;
765 virtual GLuint64 InsertFenceSyncCHROMIUM() = 0; 766 virtual GLuint64 InsertFenceSyncCHROMIUM() = 0;
766 virtual void GenSyncTokenCHROMIUM(GLuint64 fence_sync, GLbyte* sync_token) = 0; 767 virtual void GenSyncTokenCHROMIUM(GLuint64 fence_sync, GLbyte* sync_token) = 0;
767 virtual void GenUnverifiedSyncTokenCHROMIUM(GLuint64 fence_sync, 768 virtual void GenUnverifiedSyncTokenCHROMIUM(GLuint64 fence_sync,
768 GLbyte* sync_token) = 0; 769 GLbyte* sync_token) = 0;
769 virtual void WaitSyncTokenCHROMIUM(const GLbyte* sync_token) = 0; 770 virtual void WaitSyncTokenCHROMIUM(const GLbyte* sync_token) = 0;
770 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0; 771 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0;
771 virtual void DiscardBackbufferCHROMIUM() = 0; 772 virtual void DiscardBackbufferCHROMIUM() = 0;
772 virtual void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order, 773 virtual void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
773 GLenum plane_transform, 774 GLenum plane_transform,
774 GLuint overlay_texture_id, 775 GLuint overlay_texture_id,
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 GLuint mask, 812 GLuint mask,
812 GLenum coverMode) = 0; 813 GLenum coverMode) = 0;
813 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path, 814 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path,
814 GLint reference, 815 GLint reference,
815 GLuint mask, 816 GLuint mask,
816 GLenum coverMode) = 0; 817 GLenum coverMode) = 0;
817 virtual GLenum GetGraphicsResetStatusKHR() = 0; 818 virtual GLenum GetGraphicsResetStatusKHR() = 0;
818 virtual void BlendBarrierKHR() = 0; 819 virtual void BlendBarrierKHR() = 0;
819 virtual void ApplyScreenSpaceAntialiasingCHROMIUM() = 0; 820 virtual void ApplyScreenSpaceAntialiasingCHROMIUM() = 0;
820 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 821 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698