X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fmojo%2Fgles2%2Fcommand_buffer_client_impl.cc;h=233573fc2835bf789e1b168159b333758e021a57;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=84c67ab3be5251f3bad286a37a8c56d92d3c3f94;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/mojo/gles2/command_buffer_client_impl.cc b/src/mojo/gles2/command_buffer_client_impl.cc index 84c67ab..233573f 100644 --- a/src/mojo/gles2/command_buffer_client_impl.cc +++ b/src/mojo/gles2/command_buffer_client_impl.cc @@ -208,14 +208,14 @@ void CommandBufferClientImpl::DestroyGpuMemoryBuffer(int32 id) { } uint32 CommandBufferClientImpl::InsertSyncPoint() { - // TODO(piman) - NOTIMPLEMENTED(); + // TODO(jamesr): Optimize this. + WaitForGetOffsetInRange(last_put_offset_, last_put_offset_); return 0; } uint32 CommandBufferClientImpl::InsertFutureSyncPoint() { - // TODO(piman) - NOTIMPLEMENTED(); + // TODO(jamesr): Optimize this. + WaitForGetOffsetInRange(last_put_offset_, last_put_offset_); return 0; }