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

Unified Diff: platform/armemu/display.c

Issue 1951403002: Stub display_present (Closed) Base URL: https://github.com/littlekernel/lk.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « dev/virtio/gpu/virtio-gpu.c ('k') | target/qemu-m4/m4display.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform/armemu/display.c
diff --git a/platform/armemu/display.c b/platform/armemu/display.c
index 0ab09bae94cd7d10cb6615e903a746f56805f9a5..fed1ccf6bdfe83faefc60b7b03c6d0d0b103867d 100644
--- a/platform/armemu/display.c
+++ b/platform/armemu/display.c
@@ -22,6 +22,7 @@
*/
#include <err.h>
#include <debug.h>
+#include <trace.h>
#include <platform.h>
#include "platform_p.h"
#include <platform/armemu.h>
@@ -85,3 +86,9 @@ status_t display_get_info(struct display_info *info)
return NO_ERROR;
}
+status_t display_present(struct display_image *image, uint starty, uint endy)
+{
+ TRACEF("display_present - not implemented");
+ DEBUG_ASSERT(false);
+ return NO_ERROR;
+}
« no previous file with comments | « dev/virtio/gpu/virtio-gpu.c ('k') | target/qemu-m4/m4display.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698