Unix and Linux Discussions Tagged with hardware |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
9,433 |
HP-UX |
|
|
|
5 |
31,056 |
Solaris |
|
|
|
11 |
21,725 |
AIX |
|
|
|
3 |
6,027 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
7,645 |
HP-UX |
|
|
|
5 |
2,483 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,006 |
Hardware |
|
|
|
6 |
6,929 |
AIX |
|
|
|
2 |
7,827 |
Hardware |
|
|
|
2 |
2,308 |
AIX |
|
|
|
2 |
4,041 |
Red Hat |
|
|
|
12 |
7,023 |
AIX |
|
|
|
2 |
2,204 |
Red Hat |
|
|
|
2 |
2,625 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,800 |
Hardware |
|
|
|
8 |
16,618 |
Solaris |
|
|
|
1 |
4,332 |
Hardware |
|
|
|
2 |
4,654 |
Solaris |
|
|
|
2 |
2,846 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,890 |
AIX |
|
|
|
4 |
4,422 |
Hardware |
|
|
|
1 |
3,822 |
Hardware |
|
|
|
2 |
4,796 |
SCO |
|
|
|
0 |
8,988 |
Hardware |
|
|
|
5 |
17,188 |
HP-UX |
|
|
|
4 |
9,558 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
60,926 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
7,399 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,020 |
Solaris BigAdmin RSS |
|
|
|
0 |
1,265 |
Software Releases - RSS News |
|
|
|
2 |
4,677 |
AIX |
|
|
|
0 |
1,350 |
UNIX and Linux RSS News |
|
|
|
1 |
14,060 |
Red Hat |
|
|
|
2 |
8,803 |
Solaris |
|
|
|
0 |
1,463 |
UNIX and Linux RSS News |
|
|
|
7 |
5,266 |
Solaris |
|
|
|
4 |
10,618 |
Solaris |
|
|
|
2 |
4,826 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
4,129 |
Programming |
|
|
|
0 |
1,905 |
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)