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