Searched defs:forciblyEvictedContexts (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContext.cpp97 Vector<WebGLRenderingContext*>& WebGLRenderingContext::forciblyEvictedContexts() function in class:WebCore::WebGLRenderingContext
99 DEFINE_STATIC_LOCAL(Vector<WebGLRenderingContext*>, forciblyEvictedContexts, ());
100 return forciblyEvictedContexts;
145 if (addToEvictedList && !forciblyEvictedContexts().contains(context))
146 forciblyEvictedContexts().append(context);
151 size_t position = forciblyEvictedContexts().find(context);
153 forciblyEvictedContexts().remove(position);
158 while(activeContexts().size() < maxGLActiveContexts && forciblyEvictedContexts().size()) {
159 WebGLRenderingContext* evictedContext = forciblyEvictedContexts().first();
161 forciblyEvictedContexts()
[all...]

Completed in 101 milliseconds