framebuf.h 498 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2019 Intel Corp.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DISPLAY_FRAMEBUF_H_
  7. #define ZEPHYR_INCLUDE_DISPLAY_FRAMEBUF_H_
  8. #include <drivers/display.h>
  9. extern const struct display_driver_api framebuf_display_api;
  10. struct framebuf_dev_data {
  11. void *buffer;
  12. uint32_t pitch;
  13. uint16_t width;
  14. uint16_t height;
  15. };
  16. #define FRAMEBUF_DATA(dev) ((struct framebuf_dev_data *) ((dev)->data))
  17. #endif /* ZEPHYR_INCLUDE_DISPLAY_FRAMEBUF_H_ */