Unix and Linux Discussions Tagged with hardware |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
9,646 |
HP-UX |
|
|
|
5 |
31,577 |
Solaris |
|
|
|
11 |
22,058 |
AIX |
|
|
|
3 |
6,185 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
7,854 |
HP-UX |
|
|
|
5 |
2,545 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,142 |
Hardware |
|
|
|
6 |
7,002 |
AIX |
|
|
|
2 |
7,971 |
Hardware |
|
|
|
2 |
2,371 |
AIX |
|
|
|
2 |
4,145 |
Red Hat |
|
|
|
12 |
7,172 |
AIX |
|
|
|
2 |
2,308 |
Red Hat |
|
|
|
2 |
2,633 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,897 |
Hardware |
|
|
|
8 |
16,712 |
Solaris |
|
|
|
1 |
4,419 |
Hardware |
|
|
|
2 |
4,685 |
Solaris |
|
|
|
2 |
2,851 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,953 |
AIX |
|
|
|
4 |
4,523 |
Hardware |
|
|
|
1 |
3,905 |
Hardware |
|
|
|
2 |
4,910 |
SCO |
|
|
|
0 |
9,118 |
Hardware |
|
|
|
5 |
17,273 |
HP-UX |
|
|
|
4 |
9,561 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
61,037 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
7,405 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,022 |
Solaris BigAdmin RSS |
|
|
|
0 |
1,273 |
Software Releases - RSS News |
|
|
|
2 |
4,758 |
AIX |
|
|
|
0 |
1,354 |
UNIX and Linux RSS News |
|
|
|
1 |
14,172 |
Red Hat |
|
|
|
2 |
8,821 |
Solaris |
|
|
|
0 |
1,474 |
UNIX and Linux RSS News |
|
|
|
7 |
5,303 |
Solaris |
|
|
|
4 |
10,646 |
Solaris |
|
|
|
2 |
4,834 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
4,219 |
Programming |
|
|
|
0 |
1,918 |
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)