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

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: Reverted mojo readme, changed wait() to take a pointer Created 5 years, 2 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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) = 0;
765 virtual GLuint64 InsertFenceSyncCHROMIUM() = 0;
766 virtual void GenSyncTokenCHROMIUM(GLuint64 fence_sync, GLbyte* sync_token) = 0;
767 virtual void WaitSyncTokenCHROMIUM(const GLbyte* sync_token) = 0;
765 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0; 768 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0;
766 virtual void DiscardBackbufferCHROMIUM() = 0; 769 virtual void DiscardBackbufferCHROMIUM() = 0;
767 virtual void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order, 770 virtual void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
768 GLenum plane_transform, 771 GLenum plane_transform,
769 GLuint overlay_texture_id, 772 GLuint overlay_texture_id,
770 GLint bounds_x, 773 GLint bounds_x,
771 GLint bounds_y, 774 GLint bounds_y,
772 GLint bounds_width, 775 GLint bounds_width,
773 GLint bounds_height, 776 GLint bounds_height,
774 GLfloat uv_x, 777 GLfloat uv_x,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 GLuint mask, 809 GLuint mask,
807 GLenum coverMode) = 0; 810 GLenum coverMode) = 0;
808 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path, 811 virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path,
809 GLint reference, 812 GLint reference,
810 GLuint mask, 813 GLuint mask,
811 GLenum coverMode) = 0; 814 GLenum coverMode) = 0;
812 virtual GLenum GetGraphicsResetStatusKHR() = 0; 815 virtual GLenum GetGraphicsResetStatusKHR() = 0;
813 virtual void BlendBarrierKHR() = 0; 816 virtual void BlendBarrierKHR() = 0;
814 virtual void ApplyScreenSpaceAntialiasingCHROMIUM() = 0; 817 virtual void ApplyScreenSpaceAntialiasingCHROMIUM() = 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