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

Side by Side Diff: gpu/command_buffer/client/gles2_interface_stub_impl_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 993 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 void GLES2InterfaceStub::DiscardFramebufferEXT( 1004 void GLES2InterfaceStub::DiscardFramebufferEXT(
1005 GLenum /* target */, 1005 GLenum /* target */,
1006 GLsizei /* count */, 1006 GLsizei /* count */,
1007 const GLenum* /* attachments */) {} 1007 const GLenum* /* attachments */) {}
1008 void GLES2InterfaceStub::LoseContextCHROMIUM(GLenum /* current */, 1008 void GLES2InterfaceStub::LoseContextCHROMIUM(GLenum /* current */,
1009 GLenum /* other */) {} 1009 GLenum /* other */) {}
1010 GLuint GLES2InterfaceStub::InsertSyncPointCHROMIUM() { 1010 GLuint GLES2InterfaceStub::InsertSyncPointCHROMIUM() {
1011 return 0; 1011 return 0;
1012 } 1012 }
1013 void GLES2InterfaceStub::WaitSyncPointCHROMIUM(GLuint /* sync_point */) {} 1013 void GLES2InterfaceStub::WaitSyncPointCHROMIUM(GLuint /* sync_point */) {}
1014 GLuint64 GLES2InterfaceStub::InsertFenceSyncCHROMIUM() {
1015 return 0;
1016 }
1017 void GLES2InterfaceStub::GenSyncTokenCHROMIUM(GLuint64 /* fence_sync */,
1018 GLbyte* /* sync_token */) {}
1019 void GLES2InterfaceStub::WaitSyncTokenCHROMIUM(const GLbyte* /* sync_token */) {
1020 }
1014 void GLES2InterfaceStub::DrawBuffersEXT(GLsizei /* count */, 1021 void GLES2InterfaceStub::DrawBuffersEXT(GLsizei /* count */,
1015 const GLenum* /* bufs */) {} 1022 const GLenum* /* bufs */) {}
1016 void GLES2InterfaceStub::DiscardBackbufferCHROMIUM() {} 1023 void GLES2InterfaceStub::DiscardBackbufferCHROMIUM() {}
1017 void GLES2InterfaceStub::ScheduleOverlayPlaneCHROMIUM( 1024 void GLES2InterfaceStub::ScheduleOverlayPlaneCHROMIUM(
1018 GLint /* plane_z_order */, 1025 GLint /* plane_z_order */,
1019 GLenum /* plane_transform */, 1026 GLenum /* plane_transform */,
1020 GLuint /* overlay_texture_id */, 1027 GLuint /* overlay_texture_id */,
1021 GLint /* bounds_x */, 1028 GLint /* bounds_x */,
1022 GLint /* bounds_y */, 1029 GLint /* bounds_y */,
1023 GLint /* bounds_width */, 1030 GLint /* bounds_width */,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 GLuint /* path */, 1080 GLuint /* path */,
1074 GLint /* reference */, 1081 GLint /* reference */,
1075 GLuint /* mask */, 1082 GLuint /* mask */,
1076 GLenum /* coverMode */) {} 1083 GLenum /* coverMode */) {}
1077 GLenum GLES2InterfaceStub::GetGraphicsResetStatusKHR() { 1084 GLenum GLES2InterfaceStub::GetGraphicsResetStatusKHR() {
1078 return 0; 1085 return 0;
1079 } 1086 }
1080 void GLES2InterfaceStub::BlendBarrierKHR() {} 1087 void GLES2InterfaceStub::BlendBarrierKHR() {}
1081 void GLES2InterfaceStub::ApplyScreenSpaceAntialiasingCHROMIUM() {} 1088 void GLES2InterfaceStub::ApplyScreenSpaceAntialiasingCHROMIUM() {}
1082 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 1089 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698