SDL_VideoInfo
章節:SDL API 參考 (3)
更新:2001年9月11日 星期二 23:01
索引
名稱
SDL_VideoInfo - 視頻目標信息。
結構體的定義
typedef struct{
Uint32 hw_available:1;
Uint32 wm_available:1;
Uint32 blit_hw:1;
Uint32 blit_hw_CC:1;
Uint32 blit_hw_A:1;
Uint32 blit_sw:1;
Uint32 blit_sw_CC:1;
Uint32 blit_sw_A:1;
Uint32 blit_fill;
Uint32 video_mem;
SDL_PixelFormat *vfmt;
} SDL_VideoInfo;
結構體的內容
- hw_available
-
可否創建硬件平面?
- wm_available
-
窗口管理器是否可用?
- blit_hw
-
硬件到硬件的圖塊傳送是否被加速?
- blit_hw_CC
-
硬件到硬件的色鍵圖塊傳送是否被加速?
- blit_hw_A
-
硬件到硬件的alpha圖塊傳送是否被加速?
- blit_sw
-
軟件到硬件的圖塊傳送是否被加速?
- blit_sw_CC
-
軟件到硬件的色鍵圖塊傳送是否被加速?
- blit_sw_A
-
軟件到硬件的alpha圖塊傳送是否被加速?
- blit_fill
-
顏色填充是否被加速?
- video_mem
-
以KB計的顯存總量。
- vfmt
-
視頻設備的像素格式。
描述
此只讀結構體由SDL_GetVideoInfo返回。它包含"最佳"的可用模式(若在SDL_SetVideoMode之前被調用)或當前視頻模式的信息。
另見
SDL_PixelFormat、SDL_GetVideoInfo
譯者
石仔<guoshimin57@gmail.com>
中文版主頁
http://guoshimin.users.sf.net
中文版最後更新時間
2010年2月16日
索引
- 名稱
-
- 結構體的定義
-
- 結構體的內容
-
- 描述
-
- 另見
-
- 譯者
-
- 中文版主頁
-
- 中文版最後更新時間
-