⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tl_vga.h

📁 DC上的GB模拟器源代码
💻 H
字号:
/*
** thinlib (c) 2001 Matthew Conte (matt@conte.com)
**
**
** tl_vga.h
**
** VGA-specific thinlib routines
**
** $Id: $
*/

#ifndef _TL_VGA_H_
#define _TL_VGA_H_

#include "tl_types.h"
#include "tl_bmp.h"

extern int thin_vga_init(int width, int height, int bpp, int param);
extern void thin_vga_shutdown(void);

extern int thin_vga_setmode(int width, int height, int bpp);
extern void thin_vga_setpalette(rgb_t *palette, int index, int length);
extern void thin_vga_waitvsync(void);

extern bitmap_t *thin_vga_lockwrite(void);
extern void thin_vga_freewrite(int num_dirties, rect_t *dirty_rects);

#endif /* !_TL_VGA_H_ */

/*
** $Log: $
*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -