1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-08-15 06:35:18 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

26 lines
704 B
C

/* tui/stui_hal.h
*
* Samsung TUI HW Handler driver.
*
* Copyright (c) 2015 Samsung Electronics
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __STUI_HAL_H_
#define __STUI_HAL_H_
#include "stui_ioctl.h"
#include "stui_core.h"
int stui_i2c_protect(bool is_protect);
int stui_prepare_tui(void);
void stui_finish_tui(void);
void stui_free_video_space(void);
int stui_alloc_video_space(struct tui_hw_buffer *buffer);
int stui_get_resolution(struct tui_hw_buffer *buffer);
struct stui_buf_info *stui_get_buf_info(void);
#endif /* __STUI_HAL_H_ */