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

Side by Side Diff: dev/virtio/gpu/virtio-gpu.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 unified diff | Download patch
« no previous file with comments | « no previous file | platform/armemu/display.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014-2015 Travis Geiselbrecht 2 * Copyright (c) 2014-2015 Travis Geiselbrecht
3 * 3 *
4 * Permission is hereby granted, free of charge, to any person obtaining 4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files 5 * a copy of this software and associated documentation files
6 * (the "Software"), to deal in the Software without restriction, 6 * (the "Software"), to deal in the Software without restriction,
7 * including without limitation the rights to use, copy, modify, merge, 7 * including without limitation the rights to use, copy, modify, merge,
8 * publish, distribute, sublicense, and/or sell copies of the Software, 8 * publish, distribute, sublicense, and/or sell copies of the Software,
9 * and to permit persons to whom the Software is furnished to do so, 9 * and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions: 10 * subject to the following conditions:
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 583
584 if (!the_gdev) 584 if (!the_gdev)
585 return ERR_NOT_FOUND; 585 return ERR_NOT_FOUND;
586 586
587 info->format = DISPLAY_FORMAT_RGB_x888; 587 info->format = DISPLAY_FORMAT_RGB_x888;
588 info->width = the_gdev->pmode.r.width; 588 info->width = the_gdev->pmode.r.width;
589 info->height = the_gdev->pmode.r.height; 589 info->height = the_gdev->pmode.r.height;
590 590
591 return NO_ERROR; 591 return NO_ERROR;
592 } 592 }
593
594 status_t display_present(struct display_image *image, uint starty, uint endy)
595 {
596 TRACEF("display_present - not implemented");
597 DEBUG_ASSERT(false);
598 return NO_ERROR;
599 }
OLDNEW
« no previous file with comments | « no previous file | platform/armemu/display.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698