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

Side by Side Diff: target/qemu-m4/m4display.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 | « platform/armemu/display.c ('k') | target/stm32746g-eval2/lcd.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) 2015 Gurjant Kalsi <me@gurjantkalsi.com> 2 * Copyright (c) 2015 Gurjant Kalsi <me@gurjantkalsi.com>
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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 { 223 {
224 DEBUG_ASSERT(info); 224 DEBUG_ASSERT(info);
225 LTRACEF("display_info %p\n", info); 225 LTRACEF("display_info %p\n", info);
226 226
227 info->format = DISPLAY_FORMAT_UNKNOWN; //TODO 227 info->format = DISPLAY_FORMAT_UNKNOWN; //TODO
228 info->width = M4DISPLAY_WIDTH; 228 info->width = M4DISPLAY_WIDTH;
229 info->height = M4DISPLAY_HEIGHT; 229 info->height = M4DISPLAY_HEIGHT;
230 230
231 return NO_ERROR; 231 return NO_ERROR;
232 } 232 }
233
234 status_t display_present(struct display_image *image, uint starty, uint endy)
235 {
236 TRACEF("display_present - not implemented");
237 DEBUG_ASSERT(false);
238 return NO_ERROR;
239 }
OLDNEW
« no previous file with comments | « platform/armemu/display.c ('k') | target/stm32746g-eval2/lcd.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698