| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |