HomeSort by relevance Sort by last modified time
    Searched refs:DisplayList (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
DisplayList.cpp 32 #include "platform/graphics/DisplayList.h"
41 DisplayList::DisplayList(const FloatRect& bounds)
46 DisplayList::~DisplayList()
50 const FloatRect& DisplayList::bounds() const
55 SkPicture* DisplayList::picture() const
60 SkCanvas* DisplayList::beginRecording(const IntSize& size, uint32_t recordFlags)
68 void DisplayList::endRecording()
DisplayList.h 48 class PLATFORM_EXPORT DisplayList FINAL : public WTF::RefCounted<DisplayList> {
50 WTF_MAKE_NONCOPYABLE(DisplayList);
52 DisplayList(const FloatRect&);
53 ~DisplayList();
57 // This entry point will return 0 when the DisplayList is in the
GraphicsContext.h 54 class DisplayList;
276 void drawDisplayList(DisplayList*);
339 PassRefPtr<DisplayList> endRecording();
GraphicsContext.cpp 34 #include "platform/graphics/DisplayList.h"
101 RecordingState(SkCanvas* currentCanvas, const SkMatrix& currentMatrix, PassRefPtr<DisplayList> displayList)
103 , m_displayList(displayList)
109 RefPtr<DisplayList> m_displayList;
486 RefPtr<DisplayList> displayList = adoptRef(new DisplayList(bounds));
493 m_canvas = displayList->beginRecording(recordingRect.size());
504 m_recordingStateStack.append(RecordingState(savedCanvas, savedMatrix, displayList));
    [all...]
GraphicsContextTest.cpp 30 #include "platform/graphics/DisplayList.h"
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglglobals.h 47 _EGLDisplay *DisplayList;
egldisplay.c 224 dpyList = _eglGlobal.DisplayList;
241 _eglGlobal.DisplayList = NULL;
260 dpy = _eglGlobal.DisplayList;
276 dpy->Next = _eglGlobal.DisplayList;
277 _eglGlobal.DisplayList = dpy;
342 cur = _eglGlobal.DisplayList;
  /external/mesa3d/src/egl/main/
eglglobals.h 47 _EGLDisplay *DisplayList;
egldisplay.c 224 dpyList = _eglGlobal.DisplayList;
241 _eglGlobal.DisplayList = NULL;
260 dpy = _eglGlobal.DisplayList;
276 dpy->Next = _eglGlobal.DisplayList;
277 _eglGlobal.DisplayList = dpy;
342 cur = _eglGlobal.DisplayList;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMasker.h 35 class DisplayList;
60 PassRefPtr<DisplayList> asDisplayList(GraphicsContext*, const AffineTransform&);
62 RefPtr<DisplayList> m_maskContentDisplayList;
RenderSVGResourceClipper.h 28 class DisplayList;
79 PassRefPtr<DisplayList> asDisplayList(GraphicsContext*, const AffineTransform&);
82 RefPtr<DisplayList> m_clipContentDisplayList;
RenderSVGResourceMasker.cpp 27 #include "platform/graphics/DisplayList.h"
131 PassRefPtr<DisplayList> RenderSVGResourceMasker::asDisplayList(GraphicsContext* context,
RenderSVGResourceClipper.cpp 37 #include "platform/graphics/DisplayList.h"
255 PassRefPtr<DisplayList> RenderSVGResourceClipper::asDisplayList(GraphicsContext* context,
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
gears.js 3 var HAS_DISPLAY_LIST = typeof DisplayList != "undefined";
41 var dl = new DisplayList();
56 var dl = new DisplayList();
  /external/skia/experimental/SkV8Example/
gears.js 3 var HAS_DISPLAY_LIST = typeof DisplayList != "undefined";
41 var dl = new DisplayList();
56 var dl = new DisplayList();
  /external/chromium_org/ash/display/
display_manager.h 293 typedef std::vector<gfx::Display> DisplayList;
323 bool UpdateSecondaryDisplayBoundsForLayout(DisplayList* display_list,
342 DisplayList displays_;
display_manager.cc 49 typedef std::vector<gfx::Display> DisplayList;
270 for (DisplayList::const_iterator iter = displays_.begin();
368 for (DisplayList::const_iterator iter = displays_.begin();
390 for (DisplayList::const_iterator iter = displays_.begin();
401 for (DisplayList::const_iterator iter = displays_.begin();
429 for (DisplayList::const_iterator iter = displays_.begin();
627 for (DisplayList::const_iterator iter = displays_.begin();
648 DisplayList removed_displays;
652 DisplayList::iterator curr_iter = displays_.begin();
655 DisplayList new_displays
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shared.c 69 shared->DisplayList = _mesa_NewHashTable();
322 _mesa_HashDeleteAll(shared->DisplayList, delete_displaylist_cb, ctx);
323 _mesa_DeleteHashTable(shared->DisplayList);
mtypes.h     [all...]
  /external/mesa3d/src/mesa/main/
shared.c 69 shared->DisplayList = _mesa_NewHashTable();
322 _mesa_HashDeleteAll(shared->DisplayList, delete_displaylist_cb, ctx);
323 _mesa_DeleteHashTable(shared->DisplayList);
mtypes.h     [all...]
  /external/chromium_org/ash/test/
display_manager_test_api.cc 18 typedef std::vector<gfx::Display> DisplayList;
  /frameworks/base/libs/hwui/
Android.mk 23 DisplayList.cpp \
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp 34 #include "platform/graphics/DisplayList.h"
210 RefPtr<DisplayList> displayList = context->endRecording();
212 RefPtr<SkImageFilter> result = adoptRef(SkPictureImageFilter::Create(displayList->picture(), dstRect));
  /external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk 301 third_party/WebKit/Source/platform/graphics/DisplayList.cpp \
    [all...]

Completed in 779 milliseconds

1 2