Penguin
Blame: SDL_VideoInfo(3)
EditPageHistoryDiffInfoLikePages
Annotated edit history of SDL_VideoInfo(3) version 2 showing authors affecting page license. View with all changes included.
Rev Author # Line
1 perry 1 SDL_!VideoInfo
2 !!!SDL_!VideoInfo
3 NAME
4 STRUCTURE DEFINITION
5 STRUCTURE DATA
6 DESCRIPTION
7 SEE ALSO
8 ----
9 !!NAME
10
11
12 SDL_!VideoInfo- Video Target information
13 !!STRUCTURE DEFINITION
14
15
16 typedef struct{
17 Uint32 hw_available:1;
18 Uint32 wm_available:1;
19 Uint32 blit_hw:1;
20 Uint32 blit_hw_CC:1;
21 Uint32 blit_hw_A:1;
22 Uint32 blit_sw:1;
23 Uint32 blit_sw_CC:1;
24 Uint32 blit_sw_A:1;
25 Uint32 blit_fill;
26 Uint32 video_mem;
27 SDL_!PixelFormat *vfmt;
28 } SDL_!VideoInfo;
29 !!STRUCTURE DATA
30
31
32 __hw_available__ Is it possible to create hardware
33 surfaces?
34
35
36 __wm_available__ Is there a window manager
37 available
38
39
40 __blit_hw__ Are hardware to hardware blits
41 accelerated?
42
43
44 __blit_hw_CC__ Are hardware to hardware colorkey blits
45 accelerated?
46
47
48 __blit_hw_A__ Are hardware to hardware alpha blits
49 accelerated?
50
51
52 __blit_sw__ Are software to hardware blits
53 accelerated?
54
55
56 __blit_sw_CC__ Are software to hardware colorkey blits
57 accelerated?
58
59
60 __blit_sw_A__ Are software to hardware alpha blits
61 accelerated?
62
63
64 __blit_fill__ Are color fills accelerated?
65
66
67 __video_mem__ Total amount of video memory in
68 Kilobytes
69
70
71 __vfmt__ ''Pixel format'' of the video
72 device
73 !!DESCRIPTION
74
75
76 This (read-only) structure is returned by
77 __SDL_!GetVideoInfo__. It contains information on either
78 the 'best' available mode (if called before
79 __SDL_!SetVideoMode__) or the current video
80 mode.
81 !!SEE ALSO
82
83
84 __SDL_!PixelFormat__, __SDL_!GetVideoInfo__
85 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.