2013-08-06 21:23:46 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* 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 "WebGLQuery.h"
|
2014-11-03 05:35:04 +00:00
|
|
|
|
|
|
|
#include "GLContext.h"
|
2013-08-06 21:23:46 +00:00
|
|
|
#include "mozilla/dom/WebGL2RenderingContextBinding.h"
|
|
|
|
#include "nsContentUtils.h"
|
2014-11-14 04:03:50 +00:00
|
|
|
#include "WebGLContext.h"
|
2013-08-06 21:23:46 +00:00
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
namespace mozilla {
|
2013-08-06 21:23:46 +00:00
|
|
|
|
|
|
|
JSObject*
|
2015-07-15 00:37:28 +00:00
|
|
|
WebGLQuery::WrapObject(JSContext* cx, JS::Handle<JSObject*> givenProto)
|
2014-11-03 05:35:04 +00:00
|
|
|
{
|
2015-07-15 00:37:28 +00:00
|
|
|
return dom::WebGLQueryBinding::Wrap(cx, this, givenProto);
|
2013-08-06 21:23:46 +00:00
|
|
|
}
|
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
WebGLQuery::WebGLQuery(WebGLContext* webgl)
|
|
|
|
: WebGLContextBoundObject(webgl)
|
2015-12-18 22:05:42 +00:00
|
|
|
, mCanBeAvailable(false)
|
2013-08-06 21:23:46 +00:00
|
|
|
, mGLName(0)
|
|
|
|
, mType(0)
|
|
|
|
{
|
|
|
|
mContext->mQueries.insertBack(this);
|
|
|
|
|
|
|
|
mContext->MakeContextCurrent();
|
|
|
|
mContext->gl->fGenQueries(1, &mGLName);
|
|
|
|
}
|
|
|
|
|
2014-11-03 05:35:04 +00:00
|
|
|
void
|
|
|
|
WebGLQuery::Delete()
|
|
|
|
{
|
2013-08-06 21:23:46 +00:00
|
|
|
mContext->MakeContextCurrent();
|
|
|
|
mContext->gl->fDeleteQueries(1, &mGLName);
|
|
|
|
LinkedListElement<WebGLQuery>::removeFrom(mContext->mQueries);
|
|
|
|
}
|
|
|
|
|
2014-11-03 05:35:04 +00:00
|
|
|
bool
|
|
|
|
WebGLQuery::IsActive() const
|
2013-09-04 12:14:52 +00:00
|
|
|
{
|
2015-12-11 15:12:18 +00:00
|
|
|
if (!HasEverBeenActive())
|
|
|
|
return false;
|
|
|
|
|
2015-04-17 01:17:07 +00:00
|
|
|
WebGLRefPtr<WebGLQuery>& targetSlot = mContext->GetQuerySlotByTarget(mType);
|
2013-09-04 12:14:52 +00:00
|
|
|
|
2015-04-17 01:17:07 +00:00
|
|
|
return targetSlot.get() == this;
|
2013-09-04 12:14:52 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 21:23:46 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_0(WebGLQuery)
|
|
|
|
|
2013-09-04 12:14:48 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(WebGLQuery, AddRef)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(WebGLQuery, Release)
|
2014-11-14 04:03:50 +00:00
|
|
|
|
|
|
|
} // namespace mozilla
|