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

Side by Side Diff: mojo/gpu/mojo_gles2_impl_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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) override; 757 void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) override;
758 void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) override; 758 void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) override;
759 void TraceBeginCHROMIUM(const char* category_name, 759 void TraceBeginCHROMIUM(const char* category_name,
760 const char* trace_name) override; 760 const char* trace_name) override;
761 void TraceEndCHROMIUM() override; 761 void TraceEndCHROMIUM() override;
762 void DiscardFramebufferEXT(GLenum target, 762 void DiscardFramebufferEXT(GLenum target,
763 GLsizei count, 763 GLsizei count,
764 const GLenum* attachments) override; 764 const GLenum* attachments) override;
765 void LoseContextCHROMIUM(GLenum current, GLenum other) override; 765 void LoseContextCHROMIUM(GLenum current, GLenum other) override;
766 GLuint InsertSyncPointCHROMIUM() override; 766 GLuint InsertSyncPointCHROMIUM() override;
767 void WaitSyncPointCHROMIUM(GLuint sync_point) override; 767 void WaitSyncPointCHROMIUM(GLuint sync_point,
768 const GLbyte* sync_token) override;
768 GLuint64 InsertFenceSyncCHROMIUM() override; 769 GLuint64 InsertFenceSyncCHROMIUM() override;
769 void GenSyncTokenCHROMIUM(GLuint64 fence_sync, GLbyte* sync_token) override; 770 void GenSyncTokenCHROMIUM(GLuint64 fence_sync, GLbyte* sync_token) override;
770 void GenUnverifiedSyncTokenCHROMIUM(GLuint64 fence_sync, 771 void GenUnverifiedSyncTokenCHROMIUM(GLuint64 fence_sync,
771 GLbyte* sync_token) override; 772 GLbyte* sync_token) override;
772 void WaitSyncTokenCHROMIUM(const GLbyte* sync_token) override; 773 void WaitSyncTokenCHROMIUM(const GLbyte* sync_token) override;
773 void DrawBuffersEXT(GLsizei count, const GLenum* bufs) override; 774 void DrawBuffersEXT(GLsizei count, const GLenum* bufs) override;
774 void DiscardBackbufferCHROMIUM() override; 775 void DiscardBackbufferCHROMIUM() override;
775 void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order, 776 void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
776 GLenum plane_transform, 777 GLenum plane_transform,
777 GLuint overlay_texture_id, 778 GLuint overlay_texture_id,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 GLenum GetGraphicsResetStatusKHR() override; 821 GLenum GetGraphicsResetStatusKHR() override;
821 void BlendBarrierKHR() override; 822 void BlendBarrierKHR() override;
822 void ApplyScreenSpaceAntialiasingCHROMIUM() override; 823 void ApplyScreenSpaceAntialiasingCHROMIUM() override;
823 824
824 private: 825 private:
825 MojoGLES2Context context_; 826 MojoGLES2Context context_;
826 }; 827 };
827 828
828 } // namespace mojo 829 } // namespace mojo
829 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_ 830 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698