HomeSort by relevance Sort by last modified time
    Searched refs:forciblyEvictedContexts (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContext.cpp 97 Vector<WebGLRenderingContext*>& WebGLRenderingContext::forciblyEvictedContexts()
99 DEFINE_STATIC_LOCAL(Vector<WebGLRenderingContext*>, forciblyEvictedContexts, ());
100 return forciblyEvictedContexts;
170 if (addToEvictedList && !forciblyEvictedContexts().contains(context))
171 forciblyEvictedContexts().append(context);
176 size_t position = forciblyEvictedContexts().find(context);
178 forciblyEvictedContexts().remove(position);
183 while(activeContexts().size() < maxGLActiveContexts && forciblyEvictedContexts().size()) {
184 WebGLRenderingContext* evictedContext = forciblyEvictedContexts().first();
186 forciblyEvictedContexts().remove(0)
    [all...]
WebGLRenderingContext.h     [all...]

Completed in 2054 milliseconds