Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: ui/ozone/platform/dri/dri_wrapper.h

Issue 407603002: [Ozone-DRI] Migrate cursor to using ScanoutBuffer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/ozone/platform/dri/dri_wrapper.h
diff --git a/ui/ozone/platform/dri/dri_wrapper.h b/ui/ozone/platform/dri/dri_wrapper.h
index adb828f0a24a321d4eb136087f035199a8bed539..866e0731674470dfee41f5ffd6ecdb3e7c361fe3 100644
--- a/ui/ozone/platform/dri/dri_wrapper.h
+++ b/ui/ozone/platform/dri/dri_wrapper.h
@@ -104,12 +104,11 @@ class DriWrapper {
// cursor size pointed by |handle|.
virtual bool SetCursor(uint32_t crtc_id,
uint32_t handle,
- uint32_t width,
- uint32_t height);
+ const gfx::Size& size);
// Move the cursor on CRTC |crtc_id| to (x, y);
- virtual bool MoveCursor(uint32_t crtc_id, int x, int y);
+ virtual bool MoveCursor(uint32_t crtc_id, const gfx::Point& point);
virtual void HandleEvent(drmEventContext& event);

Powered by Google App Engine
This is Rietveld 408576698