2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2014-09-18 02:08:41 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "WebGLSync.h"
|
|
|
|
|
2015-07-15 03:37:28 +03:00
|
|
|
#include "GLContext.h"
|
2014-09-18 02:08:41 +04:00
|
|
|
#include "mozilla/dom/WebGL2RenderingContextBinding.h"
|
2015-07-15 03:37:28 +03:00
|
|
|
#include "WebGLContext.h"
|
2014-09-18 02:08:41 +04:00
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
namespace mozilla {
|
2014-09-18 02:08:41 +04:00
|
|
|
|
2014-06-18 08:25:53 +04:00
|
|
|
WebGLSync::WebGLSync(WebGLContext* webgl, GLenum condition, GLbitfield flags)
|
2020-01-09 01:19:16 +03:00
|
|
|
: WebGLContextBoundObject(webgl),
|
2017-12-15 20:47:29 +03:00
|
|
|
mGLName(mContext->gl->fFenceSync(condition, flags)),
|
|
|
|
mFenceId(mContext->mNextFenceId) {
|
|
|
|
mContext->mNextFenceId += 1;
|
2014-09-18 02:08:41 +04:00
|
|
|
}
|
|
|
|
|
2020-01-09 01:19:16 +03:00
|
|
|
WebGLSync::~WebGLSync() {
|
|
|
|
if (!mContext) return;
|
2014-06-18 08:25:53 +04:00
|
|
|
mContext->gl->fDeleteSync(mGLName);
|
2014-09-18 02:08:41 +04:00
|
|
|
}
|
|
|
|
|
2017-12-15 20:47:29 +03:00
|
|
|
void WebGLSync::MarkSignaled() const {
|
|
|
|
if (mContext->mCompletedFenceId < mFenceId) {
|
|
|
|
mContext->mCompletedFenceId = mFenceId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
} // namespace mozilla
|