OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:forciblyEvictedContexts
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContextBase.cpp
108
Vector<WebGLRenderingContextBase*>& WebGLRenderingContextBase::
forciblyEvictedContexts
()
110
DEFINE_STATIC_LOCAL(Vector<WebGLRenderingContextBase*>,
forciblyEvictedContexts
, ());
111
return
forciblyEvictedContexts
;
191
if (!
forciblyEvictedContexts
().contains(context))
192
forciblyEvictedContexts
().append(context);
197
size_t position =
forciblyEvictedContexts
().find(context);
199
forciblyEvictedContexts
().remove(position);
208
while(activeContexts().size() < maxGLActiveContexts &&
forciblyEvictedContexts
().size()) {
209
WebGLRenderingContextBase* evictedContext =
forciblyEvictedContexts
().first();
211
forciblyEvictedContexts
().remove(0)
[
all
...]
WebGLRenderingContextBase.h
[
all
...]
Completed in 2659 milliseconds