Unix and Linux Discussions Tagged with hardware |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
4,595 |
HP-UX |
|
|
|
5 |
11,199 |
Solaris |
|
|
|
11 |
13,338 |
AIX |
|
|
|
3 |
2,420 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,233 |
HP-UX |
|
|
|
5 |
835 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,983 |
Hardware |
|
|
|
6 |
4,470 |
AIX |
|
|
|
2 |
3,765 |
Hardware |
|
|
|
2 |
1,527 |
AIX |
|
|
|
2 |
2,403 |
Red Hat |
|
|
|
12 |
4,368 |
AIX |
|
|
|
2 |
1,200 |
Red Hat |
|
|
|
2 |
1,541 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,388 |
Hardware |
|
|
|
8 |
12,311 |
Solaris |
|
|
|
1 |
2,551 |
Hardware |
|
|
|
2 |
3,901 |
Solaris |
|
|
|
2 |
1,824 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,497 |
AIX |
|
|
|
4 |
2,828 |
Hardware |
|
|
|
1 |
2,499 |
Hardware |
|
|
|
2 |
3,153 |
SCO |
|
|
|
0 |
6,787 |
Hardware |
|
|
|
5 |
15,353 |
HP-UX |
|
|
|
4 |
7,918 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
55,099 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
6,665 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,440 |
Solaris BigAdmin RSS |
|
|
|
0 |
832 |
Software Releases - RSS News |
|
|
|
2 |
3,586 |
AIX |
|
|
|
0 |
1,026 |
UNIX and Linux RSS News |
|
|
|
1 |
8,637 |
Red Hat |
|
|
|
2 |
7,273 |
Solaris |
|
|
|
0 |
1,126 |
UNIX and Linux RSS News |
|
|
|
7 |
4,183 |
Solaris |
|
|
|
4 |
9,658 |
Solaris |
|
|
|
2 |
3,808 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
3,061 |
Programming |
|
|
|
0 |
1,436 |
UNIX and Linux RSS News |
SDL_VideoInfo(3) SDL API Reference SDL_VideoInfo(3)
NAME
SDL_VideoInfo- Video Target information
STRUCTURE DEFINITION
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;
STRUCTURE DATA
hw_available Is it possible to create hardware surfaces?
wm_available Is there a window manager available
blit_hw Are hardware to hardware blits accelerated?
blit_hw_CC Are hardware to hardware colorkey blits accelerated?
blit_hw_A Are hardware to hardware alpha blits accelerated?
blit_sw Are software to hardware blits accelerated?
blit_sw_CC Are software to hardware colorkey blits accelerated?
blit_sw_A Are software to hardware alpha blits accelerated?
blit_fill Are color fills accelerated?
video_mem Total amount of video memory in Kilobytes
vfmt Pixel format of the video device
DESCRIPTION
This (read-only) structure is returned by SDL_GetVideoInfo. It contains information on either the 'best' available mode (if called before
SDL_SetVideoMode) or the current video mode.
SEE ALSO
SDL_PixelFormat, SDL_GetVideoInfo
SDL
Tue 11 Sep 2001, 23:01 SDL_VideoInfo(3)