blob: 74210c35738ac2c759cc92ce4a5deca4f71525af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "modules/webgl/WebGLQuery.h"
#include "modules/webgl/WebGL2RenderingContextBase.h"
#include "public/platform/Platform.h"
namespace blink {
WebGLQuery* WebGLQuery::create(WebGL2RenderingContextBase* ctx)
{
return new WebGLQuery(ctx);
}
WebGLQuery::~WebGLQuery()
{
unregisterTaskObserver();
// See the comment in WebGLObject::detachAndDeleteObject().
detachAndDeleteObject();
}
WebGLQuery::WebGLQuery(WebGL2RenderingContextBase* ctx)
: WebGLSharedPlatform3DObject(ctx)
, m_target(0)
, m_taskObserverRegistered(false)
, m_canUpdateAvailability(false)
, m_queryResultAvailable(false)
, m_queryResult(0)
{
setObject(ctx->webContext()->createQueryEXT());
}
void WebGLQuery::setTarget(GLenum target)
{
ASSERT(object());
ASSERT(!m_target);
m_target = target;
}
void WebGLQuery::deleteObjectImpl(WebGraphicsContext3D* context3d)
{
context3d->deleteQueryEXT(m_object);
m_object = 0;
}
void WebGLQuery::resetCachedResult()
{
m_canUpdateAvailability = false;
m_queryResultAvailable = false;
m_queryResult = 0;
// When this is called, the implication is that we should start
// keeping track of whether we can update the cached availability
// and result.
registerTaskObserver();
}
void WebGLQuery::updateCachedResult(WebGraphicsContext3D* ctx)
{
if (m_queryResultAvailable)
return;
if (!m_canUpdateAvailability)
return;
if (!hasTarget())
return;
// We can only update the cached result when control returns to the browser.
m_canUpdateAvailability = false;
GLuint available = 0;
ctx->getQueryObjectuivEXT(object(), GL_QUERY_RESULT_AVAILABLE_EXT, &available);
m_queryResultAvailable = !!available;
if (m_queryResultAvailable) {
GLuint result = 0;
ctx->getQueryObjectuivEXT(object(), GL_QUERY_RESULT_EXT, &result);
m_queryResult = result;
unregisterTaskObserver();
}
}
bool WebGLQuery::isQueryResultAvailable()
{
return m_queryResultAvailable;
}
GLuint WebGLQuery::getQueryResult()
{
return m_queryResult;
}
void WebGLQuery::registerTaskObserver()
{
if (!m_taskObserverRegistered) {
m_taskObserverRegistered = true;
Platform::current()->currentThread()->addTaskObserver(this);
}
}
void WebGLQuery::unregisterTaskObserver()
{
if (m_taskObserverRegistered) {
m_taskObserverRegistered = false;
Platform::current()->currentThread()->removeTaskObserver(this);
}
}
void WebGLQuery::didProcessTask()
{
m_canUpdateAvailability = true;
}
} // namespace blink
|