/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
DisplayList.cpp | 32 #include "platform/graphics/DisplayList.h" 38 DisplayList::DisplayList(const FloatRect& bounds) 44 DisplayList::~DisplayList() 48 const FloatRect& DisplayList::bounds() const 53 SkPicture* DisplayList::picture() const
|
DisplayList.h | 44 class PLATFORM_EXPORT DisplayList FINAL : public WTF::RefCounted<DisplayList> { 46 WTF_MAKE_NONCOPYABLE(DisplayList); 48 DisplayList(const FloatRect&); 49 ~DisplayList();
|
/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;
|
/frameworks/base/core/jni/ |
android_view_GLES20DisplayList.cpp | 26 #include <DisplayList.h> 41 // DisplayList view properties 45 jobject clazz, DisplayList* displayList) { 46 displayList->reset(); 50 jobject clazz, DisplayList* displayList) { 51 return displayList->getSize(); 55 jobject clazz, DisplayList* displayList, jstring name) [all...] |
/frameworks/base/core/java/android/view/ |
HardwareCanvas.java | 73 * @return {@link DisplayList#STATUS_DREW} if anything was drawn (such as a call to clear 89 * be drawn if {@link android.view.DisplayList#isValid()} returns true. 91 * @param displayList The display list to replay. 93 public void drawDisplayList(DisplayList displayList) { 94 drawDisplayList(displayList, null, DisplayList.FLAG_CLIP_CHILDREN); 100 * @param displayList The display list to replay. 102 * if this method returns {@link DisplayList#STATUS_DRAW}, can be null. 103 * @param flags Optional flags about drawing, see {@link DisplayList} fo [all...] |
HardwareLayer.java | 40 DisplayList mDisplayList; 92 * Returns the DisplayList for the layer. 94 * @return The DisplayList of the hardware layer 96 DisplayList getDisplayList() { 101 * Sets the DisplayList for the layer. 103 * @param displayList The new DisplayList for this layer 105 void setDisplayList(DisplayList displayList) { 106 mDisplayList = displayList; [all...] |
GLES20RecordingCanvas.java | 24 * This is intended for use with a DisplayList. This class keeps a list of all the Paint and 26 * the DisplayList is still holding a native reference to the memory. 42 static GLES20RecordingCanvas obtain(GLES20DisplayList displayList) { 47 canvas.mDisplayList = displayList; 66 public int drawDisplayList(DisplayList displayList, Rect dirty, int flags) { 67 int status = super.drawDisplayList(displayList, dirty, flags); 68 mDisplayList.getChildDisplayLists().add(displayList);
|
DisplayList.java | 50 * DisplayList displayList = renderer.createDisplayList(); 51 * HardwareCanvas canvas = displayList.start(width, height); 56 * displayList.end(); 77 * displayList.clear(); 99 * displayList.end(); 126 public abstract class DisplayList { 131 * {@link HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)} 145 * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int) 154 * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int [all...] |
GLES20TextureLayer.java | 106 void redrawLater(DisplayList displayList, Rect dirtyRect) {
|
GLES20DisplayList.java | 26 class GLES20DisplayList extends DisplayList { 27 private ArrayList<DisplayList> mChildDisplayLists; 87 ArrayList<DisplayList> getChildDisplayLists() { 88 if (mChildDisplayLists == null) mChildDisplayLists = new ArrayList<DisplayList>(); 127 private static native void nDestroyDisplayList(int displayList); 128 private static native int nGetDisplayListSize(int displayList); 129 private static native void nSetDisplayListName(int displayList, String name); 443 private static native void nReset(int displayList); 444 private static native void nOffsetTopAndBottom(int displayList, float offset); 445 private static native void nOffsetLeftAndRight(int displayList, float offset) [all...] |
HardwareRenderer.java | 521 public abstract DisplayList createDisplayList(String name); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGResourceMasker.h | 36 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;
|
/frameworks/base/libs/hwui/ |
DisplayList.cpp | 20 #include "DisplayList.h" 27 void DisplayList::outputLogBuffer(int fd) { 35 fprintf(file, "\nRecent DisplayList operations\n"); 46 DisplayList::DisplayList(const DisplayListRenderer& recorder) : 53 DisplayList::~DisplayList() { 58 void DisplayList::destroyDisplayListDeferred(DisplayList* displayList) { [all...] |
DisplayList.h | 99 class DisplayList { 101 DisplayList(const DisplayListRenderer& recorder); 102 ANDROID_API ~DisplayList(); 104 // See flags defined in DisplayList.java 111 ANDROID_API static void destroyDisplayListDeferred(DisplayList* displayList); 532 * State operations - needed to defer displayList property operations (for example, when setting 536 * These are initialized (via friend re-constructors) when a displayList is issued in either 546 }; // class DisplayList
|
Caches.h | 105 class DisplayList; 172 void deleteDisplayListDeferred(DisplayList* layer); 406 Vector<DisplayList*> mDisplayListGarbage;
|
Layer.h | 45 class DisplayList; 85 void updateDeferred(OpenGLRenderer* renderer, DisplayList* displayList, 88 this->displayList = displayList; 287 DisplayList* displayList;
|
/frameworks/webview/chromium/java/com/android/webview/chromium/ |
DrawGLFunctor.java | 19 import android.view.DisplayList; 63 if (ret != DisplayList.STATUS_DONE) {
|
/external/chromium_org/ash/display/ |
display_manager.h | 279 typedef std::vector<gfx::Display> DisplayList; 306 bool UpdateSecondaryDisplayBoundsForLayout(DisplayList* display_list, 321 DisplayList displays_;
|
display_manager.cc | 46 typedef std::vector<gfx::Display> DisplayList; 248 for (DisplayList::const_iterator iter = displays_.begin(); 345 for (DisplayList::const_iterator iter = displays_.begin(); 367 for (DisplayList::const_iterator iter = displays_.begin(); 378 for (DisplayList::const_iterator iter = displays_.begin(); 406 for (DisplayList::const_iterator iter = displays_.begin(); 571 for (DisplayList::const_iterator iter = displays_.begin(); 594 DisplayList removed_displays; 598 DisplayList::iterator curr_iter = displays_.begin(); 601 DisplayList new_displays [all...] |
/external/chromium_org/ash/test/ |
display_manager_test_api.cc | 18 typedef std::vector<gfx::Display> DisplayList;
|
/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);
|