HomeSort by relevance Sort by last modified time
    Searched full:graphics_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/ppapi/utility/graphics/
paint_manager.cc 69 PP_DCHECK(!graphics_.is_null() || has_pending_resize_);
77 PP_DCHECK(!graphics_.is_null() || has_pending_resize_);
90 PP_DCHECK(!graphics_.is_null() || has_pending_resize_);
97 return has_pending_resize_ ? pending_size_ : graphics_.size();
135 graphics_ = Graphics2D(instance_, pending_size_, is_always_opaque_);
151 graphics_.Scroll(update.scroll_rect, update.scroll_delta);
153 if (client_->OnPaint(graphics_, update.paint_rects, update.paint_bounds)) {
155 int32_t result = graphics_.Flush(
177 instance_->BindGraphics(graphics_);
paint_manager.h 215 const Graphics2D& graphics() const { return graphics_; }
223 Graphics2D& graphics() { return graphics_; }
280 Graphics2D graphics_; member in class:pp::PaintManager
  /external/chromium_org/pdf/
paint_manager.cc 101 DCHECK(!graphics_.is_null() || has_pending_resize_);
111 DCHECK(!graphics_.is_null() || has_pending_resize_);
127 DCHECK(!graphics_.is_null() || has_pending_resize_);
179 pp::Size new_size = GetNewContextSize(graphics_.size(), pending_size_);
180 if (graphics_.size() != new_size) {
181 graphics_ = pp::Graphics2D(instance_, new_size, is_always_opaque_);
191 graphics_.SetScale(1.0 / pending_device_scale_);
219 graphics_.Scroll(update.scroll_rect, update.scroll_delta);
249 graphics_.PaintImageData(
253 int32_t result = graphics_.Flush
    [all...]
paint_manager.h 177 pp::Graphics2D graphics_; member in class:PaintManager

Completed in 194 milliseconds