Searched refs:pending_readpixel_fences_ (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc1825 std::queue<linked_ptr<FenceCallback> > pending_readpixel_fences_; member in class:gpu::gles2::GLES2DecoderImpl
7698 pending_readpixel_fences_.push(linked_ptr<FenceCallback>(
9867 if (features().use_async_readpixels && !pending_readpixel_fences_.empty()) {
9868 pending_readpixel_fences_.back()->callbacks.push_back(callback);
9875 while (!pending_readpixel_fences_.empty() &&
9876 pending_readpixel_fences_.front()->fence->HasCompleted()) {
9878 pending_readpixel_fences_.front()->callbacks;
9879 pending_readpixel_fences_.pop();
9887 return !pending_readpixel_fences_.empty() ||

Completed in 144 milliseconds