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

📄 driver.h

📁 傅立叶变换和小波变换是图像压缩的重要工具。该代大戏是利用小波变换进行图像压缩。
💻 H
字号:
#ifndef Driver_H
#define Driver_H

#include "drawdriver.h"

#include "Display.h"

#ifdef __cplusplus
extern "C" {
#endif

//--------------------------------------------------------------

extern Display				*SD_Display;
extern bool			 SD_DIBDisplayMode;
extern bool			 SD_Active;

extern Driver_Window		ClientWindow;

typedef bool Driver_ENUM_MODES_CB( int Mode, char *ModeName, int Width, int Height, int BPP, void *Context);
typedef bool Driver_ENUM_Driver_CB( int Driver, char *DriverName, void *Context);

bool SoftDriver_Init(int Driver,int Mode,HWND hWnd);
bool SoftDriver_SetActive(bool Active);
bool SoftDriver_Shutdown(void);
bool SoftDriver_UpdateWindow(void);
bool SoftDriver_BeginScene(bool Clear);
bool SoftDriver_EndScene(void);
bool SoftDriver_EnumSubDrivers(Driver_ENUM_Driver_CB *Cb, void *Context);
bool SoftDriver_EnumModes(int Driver, char *DriverName, Driver_ENUM_MODES_CB *Cb, void *Context);

//--------------------------------------------------------------

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

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