~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/fb/api.rst

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/fb/api.rst (Version linux-6.11.5) and /Documentation/fb/api.rst (Version linux-5.14.21)


  1 ===========================                         1 ===========================
  2 The Frame Buffer Device API                         2 The Frame Buffer Device API
  3 ===========================                         3 ===========================
  4                                                     4 
  5 Last revised: June 21, 2011                         5 Last revised: June 21, 2011
  6                                                     6 
  7                                                     7 
  8 0. Introduction                                     8 0. Introduction
  9 ---------------                                     9 ---------------
 10                                                    10 
 11 This document describes the frame buffer API u     11 This document describes the frame buffer API used by applications to interact
 12 with frame buffer devices. In-kernel APIs betw     12 with frame buffer devices. In-kernel APIs between device drivers and the frame
 13 buffer core are not described.                     13 buffer core are not described.
 14                                                    14 
 15 Due to a lack of documentation in the original     15 Due to a lack of documentation in the original frame buffer API, drivers
 16 behaviours differ in subtle (and not so subtle     16 behaviours differ in subtle (and not so subtle) ways. This document describes
 17 the recommended API implementation, but applic     17 the recommended API implementation, but applications should be prepared to
 18 deal with different behaviours.                    18 deal with different behaviours.
 19                                                    19 
 20                                                    20 
 21 1. Capabilities                                    21 1. Capabilities
 22 ---------------                                    22 ---------------
 23                                                    23 
 24 Device and driver capabilities are reported in     24 Device and driver capabilities are reported in the fixed screen information
 25 capabilities field::                               25 capabilities field::
 26                                                    26 
 27   struct fb_fix_screeninfo {                       27   struct fb_fix_screeninfo {
 28         ...                                        28         ...
 29         __u16 capabilities;             /* see     29         __u16 capabilities;             /* see FB_CAP_*                 */
 30         ...                                        30         ...
 31   };                                               31   };
 32                                                    32 
 33 Application should use those capabilities to f     33 Application should use those capabilities to find out what features they can
 34 expect from the device and driver.                 34 expect from the device and driver.
 35                                                    35 
 36 - FB_CAP_FOURCC                                    36 - FB_CAP_FOURCC
 37                                                    37 
 38 The driver supports the four character code (F     38 The driver supports the four character code (FOURCC) based format setting API.
 39 When supported, formats are configured using a     39 When supported, formats are configured using a FOURCC instead of manually
 40 specifying color components layout.                40 specifying color components layout.
 41                                                    41 
 42                                                    42 
 43 2. Types and visuals                               43 2. Types and visuals
 44 --------------------                               44 --------------------
 45                                                    45 
 46 Pixels are stored in memory in hardware-depend     46 Pixels are stored in memory in hardware-dependent formats. Applications need
 47 to be aware of the pixel storage format in ord     47 to be aware of the pixel storage format in order to write image data to the
 48 frame buffer memory in the format expected by      48 frame buffer memory in the format expected by the hardware.
 49                                                    49 
 50 Formats are described by frame buffer types an     50 Formats are described by frame buffer types and visuals. Some visuals require
 51 additional information, which are stored in th     51 additional information, which are stored in the variable screen information
 52 bits_per_pixel, grayscale, red, green, blue an     52 bits_per_pixel, grayscale, red, green, blue and transp fields.
 53                                                    53 
 54 Visuals describe how color information is enco     54 Visuals describe how color information is encoded and assembled to create
 55 macropixels. Types describe how macropixels ar     55 macropixels. Types describe how macropixels are stored in memory. The following
 56 types and visuals are supported.                   56 types and visuals are supported.
 57                                                    57 
 58 - FB_TYPE_PACKED_PIXELS                            58 - FB_TYPE_PACKED_PIXELS
 59                                                    59 
 60 Macropixels are stored contiguously in a singl     60 Macropixels are stored contiguously in a single plane. If the number of bits
 61 per macropixel is not a multiple of 8, whether     61 per macropixel is not a multiple of 8, whether macropixels are padded to the
 62 next multiple of 8 bits or packed together int     62 next multiple of 8 bits or packed together into bytes depends on the visual.
 63                                                    63 
 64 Padding at end of lines may be present and is      64 Padding at end of lines may be present and is then reported through the fixed
 65 screen information line_length field.              65 screen information line_length field.
 66                                                    66 
 67 - FB_TYPE_PLANES                                   67 - FB_TYPE_PLANES
 68                                                    68 
 69 Macropixels are split across multiple planes.      69 Macropixels are split across multiple planes. The number of planes is equal to
 70 the number of bits per macropixel, with plane      70 the number of bits per macropixel, with plane i'th storing i'th bit from all
 71 macropixels.                                       71 macropixels.
 72                                                    72 
 73 Planes are located contiguously in memory.         73 Planes are located contiguously in memory.
 74                                                    74 
 75 - FB_TYPE_INTERLEAVED_PLANES                       75 - FB_TYPE_INTERLEAVED_PLANES
 76                                                    76 
 77 Macropixels are split across multiple planes.      77 Macropixels are split across multiple planes. The number of planes is equal to
 78 the number of bits per macropixel, with plane      78 the number of bits per macropixel, with plane i'th storing i'th bit from all
 79 macropixels.                                       79 macropixels.
 80                                                    80 
 81 Planes are interleaved in memory. The interlea     81 Planes are interleaved in memory. The interleave factor, defined as the
 82 distance in bytes between the beginning of two     82 distance in bytes between the beginning of two consecutive interleaved blocks
 83 belonging to different planes, is stored in th     83 belonging to different planes, is stored in the fixed screen information
 84 type_aux field.                                    84 type_aux field.
 85                                                    85 
 86 - FB_TYPE_FOURCC                                   86 - FB_TYPE_FOURCC
 87                                                    87 
 88 Macropixels are stored in memory as described      88 Macropixels are stored in memory as described by the format FOURCC identifier
 89 stored in the variable screen information gray     89 stored in the variable screen information grayscale field.
 90                                                    90 
 91 - FB_VISUAL_MONO01                                 91 - FB_VISUAL_MONO01
 92                                                    92 
 93 Pixels are black or white and stored on a numb     93 Pixels are black or white and stored on a number of bits (typically one)
 94 specified by the variable screen information b     94 specified by the variable screen information bpp field.
 95                                                    95 
 96 Black pixels are represented by all bits set t     96 Black pixels are represented by all bits set to 1 and white pixels by all bits
 97 set to 0. When the number of bits per pixel is     97 set to 0. When the number of bits per pixel is smaller than 8, several pixels
 98 are packed together in a byte.                     98 are packed together in a byte.
 99                                                    99 
100 FB_VISUAL_MONO01 is currently used with FB_TYP    100 FB_VISUAL_MONO01 is currently used with FB_TYPE_PACKED_PIXELS only.
101                                                   101 
102 - FB_VISUAL_MONO10                                102 - FB_VISUAL_MONO10
103                                                   103 
104 Pixels are black or white and stored on a numb    104 Pixels are black or white and stored on a number of bits (typically one)
105 specified by the variable screen information b    105 specified by the variable screen information bpp field.
106                                                   106 
107 Black pixels are represented by all bits set t    107 Black pixels are represented by all bits set to 0 and white pixels by all bits
108 set to 1. When the number of bits per pixel is    108 set to 1. When the number of bits per pixel is smaller than 8, several pixels
109 are packed together in a byte.                    109 are packed together in a byte.
110                                                   110 
111 FB_VISUAL_MONO01 is currently used with FB_TYP    111 FB_VISUAL_MONO01 is currently used with FB_TYPE_PACKED_PIXELS only.
112                                                   112 
113 - FB_VISUAL_TRUECOLOR                             113 - FB_VISUAL_TRUECOLOR
114                                                   114 
115 Pixels are broken into red, green and blue com    115 Pixels are broken into red, green and blue components, and each component
116 indexes a read-only lookup table for the corre    116 indexes a read-only lookup table for the corresponding value. Lookup tables
117 are device-dependent, and provide linear or no    117 are device-dependent, and provide linear or non-linear ramps.
118                                                   118 
119 Each component is stored in a macropixel accor    119 Each component is stored in a macropixel according to the variable screen
120 information red, green, blue and transp fields    120 information red, green, blue and transp fields.
121                                                   121 
122 - FB_VISUAL_PSEUDOCOLOR and FB_VISUAL_STATIC_P    122 - FB_VISUAL_PSEUDOCOLOR and FB_VISUAL_STATIC_PSEUDOCOLOR
123                                                   123 
124 Pixel values are encoded as indices into a col    124 Pixel values are encoded as indices into a colormap that stores red, green and
125 blue components. The colormap is read-only for    125 blue components. The colormap is read-only for FB_VISUAL_STATIC_PSEUDOCOLOR
126 and read-write for FB_VISUAL_PSEUDOCOLOR.         126 and read-write for FB_VISUAL_PSEUDOCOLOR.
127                                                   127 
128 Each pixel value is stored in the number of bi    128 Each pixel value is stored in the number of bits reported by the variable
129 screen information bits_per_pixel field.          129 screen information bits_per_pixel field.
130                                                   130 
131 - FB_VISUAL_DIRECTCOLOR                           131 - FB_VISUAL_DIRECTCOLOR
132                                                   132 
133 Pixels are broken into red, green and blue com    133 Pixels are broken into red, green and blue components, and each component
134 indexes a programmable lookup table for the co    134 indexes a programmable lookup table for the corresponding value.
135                                                   135 
136 Each component is stored in a macropixel accor    136 Each component is stored in a macropixel according to the variable screen
137 information red, green, blue and transp fields    137 information red, green, blue and transp fields.
138                                                   138 
139 - FB_VISUAL_FOURCC                                139 - FB_VISUAL_FOURCC
140                                                   140 
141 Pixels are encoded and  interpreted as describ    141 Pixels are encoded and  interpreted as described by the format FOURCC
142 identifier stored in the variable screen infor    142 identifier stored in the variable screen information grayscale field.
143                                                   143 
144                                                   144 
145 3. Screen information                             145 3. Screen information
146 ---------------------                             146 ---------------------
147                                                   147 
148 Screen information are queried by applications    148 Screen information are queried by applications using the FBIOGET_FSCREENINFO
149 and FBIOGET_VSCREENINFO ioctls. Those ioctls t    149 and FBIOGET_VSCREENINFO ioctls. Those ioctls take a pointer to a
150 fb_fix_screeninfo and fb_var_screeninfo struct    150 fb_fix_screeninfo and fb_var_screeninfo structure respectively.
151                                                   151 
152 struct fb_fix_screeninfo stores device indepen    152 struct fb_fix_screeninfo stores device independent unchangeable information
153 about the frame buffer device and the current     153 about the frame buffer device and the current format. Those information can't
154 be directly modified by applications, but can     154 be directly modified by applications, but can be changed by the driver when an
155 application modifies the format::                 155 application modifies the format::
156                                                   156 
157   struct fb_fix_screeninfo {                      157   struct fb_fix_screeninfo {
158         char id[16];                    /* ide    158         char id[16];                    /* identification string eg "TT Builtin" */
159         unsigned long smem_start;       /* Sta    159         unsigned long smem_start;       /* Start of frame buffer mem */
160                                         /* (ph    160                                         /* (physical address) */
161         __u32 smem_len;                 /* Len    161         __u32 smem_len;                 /* Length of frame buffer mem */
162         __u32 type;                     /* see    162         __u32 type;                     /* see FB_TYPE_*                */
163         __u32 type_aux;                 /* Int    163         __u32 type_aux;                 /* Interleave for interleaved Planes */
164         __u32 visual;                   /* see    164         __u32 visual;                   /* see FB_VISUAL_*              */
165         __u16 xpanstep;                 /* zer    165         __u16 xpanstep;                 /* zero if no hardware panning  */
166         __u16 ypanstep;                 /* zer    166         __u16 ypanstep;                 /* zero if no hardware panning  */
167         __u16 ywrapstep;                /* zer    167         __u16 ywrapstep;                /* zero if no hardware ywrap    */
168         __u32 line_length;              /* len    168         __u32 line_length;              /* length of a line in bytes    */
169         unsigned long mmio_start;       /* Sta    169         unsigned long mmio_start;       /* Start of Memory Mapped I/O   */
170                                         /* (ph    170                                         /* (physical address) */
171         __u32 mmio_len;                 /* Len    171         __u32 mmio_len;                 /* Length of Memory Mapped I/O  */
172         __u32 accel;                    /* Ind    172         __u32 accel;                    /* Indicate to driver which     */
173                                         /*  sp    173                                         /*  specific chip/card we have  */
174         __u16 capabilities;             /* see    174         __u16 capabilities;             /* see FB_CAP_*                 */
175         __u16 reserved[2];              /* Res    175         __u16 reserved[2];              /* Reserved for future compatibility */
176   };                                              176   };
177                                                   177 
178 struct fb_var_screeninfo stores device indepen    178 struct fb_var_screeninfo stores device independent changeable information
179 about a frame buffer device, its current forma    179 about a frame buffer device, its current format and video mode, as well as
180 other miscellaneous parameters::                  180 other miscellaneous parameters::
181                                                   181 
182   struct fb_var_screeninfo {                      182   struct fb_var_screeninfo {
183         __u32 xres;                     /* vis    183         __u32 xres;                     /* visible resolution           */
184         __u32 yres;                               184         __u32 yres;
185         __u32 xres_virtual;             /* vir    185         __u32 xres_virtual;             /* virtual resolution           */
186         __u32 yres_virtual;                       186         __u32 yres_virtual;
187         __u32 xoffset;                  /* off    187         __u32 xoffset;                  /* offset from virtual to visible */
188         __u32 yoffset;                  /* res    188         __u32 yoffset;                  /* resolution                   */
189                                                   189 
190         __u32 bits_per_pixel;           /* gue    190         __u32 bits_per_pixel;           /* guess what                   */
191         __u32 grayscale;                /* 0 =    191         __u32 grayscale;                /* 0 = color, 1 = grayscale,    */
192                                         /* >1     192                                         /* >1 = FOURCC                  */
193         struct fb_bitfield red;         /* bit    193         struct fb_bitfield red;         /* bitfield in fb mem if true color, */
194         struct fb_bitfield green;       /* els    194         struct fb_bitfield green;       /* else only length is significant */
195         struct fb_bitfield blue;                  195         struct fb_bitfield blue;
196         struct fb_bitfield transp;      /* tra    196         struct fb_bitfield transp;      /* transparency                 */
197                                                   197 
198         __u32 nonstd;                   /* !=     198         __u32 nonstd;                   /* != 0 Non standard pixel format */
199                                                   199 
200         __u32 activate;                 /* see    200         __u32 activate;                 /* see FB_ACTIVATE_*            */
201                                                   201 
202         __u32 height;                   /* hei    202         __u32 height;                   /* height of picture in mm    */
203         __u32 width;                    /* wid    203         __u32 width;                    /* width of picture in mm     */
204                                                   204 
205         __u32 accel_flags;              /* (OB    205         __u32 accel_flags;              /* (OBSOLETE) see fb_info.flags */
206                                                   206 
207         /* Timing: All values in pixclocks, ex    207         /* Timing: All values in pixclocks, except pixclock (of course) */
208         __u32 pixclock;                 /* pix    208         __u32 pixclock;                 /* pixel clock in ps (pico seconds) */
209         __u32 left_margin;              /* tim    209         __u32 left_margin;              /* time from sync to picture    */
210         __u32 right_margin;             /* tim    210         __u32 right_margin;             /* time from picture to sync    */
211         __u32 upper_margin;             /* tim    211         __u32 upper_margin;             /* time from sync to picture    */
212         __u32 lower_margin;                       212         __u32 lower_margin;
213         __u32 hsync_len;                /* len    213         __u32 hsync_len;                /* length of horizontal sync    */
214         __u32 vsync_len;                /* len    214         __u32 vsync_len;                /* length of vertical sync      */
215         __u32 sync;                     /* see    215         __u32 sync;                     /* see FB_SYNC_*                */
216         __u32 vmode;                    /* see    216         __u32 vmode;                    /* see FB_VMODE_*               */
217         __u32 rotate;                   /* ang    217         __u32 rotate;                   /* angle we rotate counter clockwise */
218         __u32 colorspace;               /* col    218         __u32 colorspace;               /* colorspace for FOURCC-based modes */
219         __u32 reserved[4];              /* Res    219         __u32 reserved[4];              /* Reserved for future compatibility */
220   };                                              220   };
221                                                   221 
222 To modify variable information, applications c    222 To modify variable information, applications call the FBIOPUT_VSCREENINFO
223 ioctl with a pointer to a fb_var_screeninfo st    223 ioctl with a pointer to a fb_var_screeninfo structure. If the call is
224 successful, the driver will update the fixed s    224 successful, the driver will update the fixed screen information accordingly.
225                                                   225 
226 Instead of filling the complete fb_var_screeni    226 Instead of filling the complete fb_var_screeninfo structure manually,
227 applications should call the FBIOGET_VSCREENIN    227 applications should call the FBIOGET_VSCREENINFO ioctl and modify only the
228 fields they care about.                           228 fields they care about.
229                                                   229 
230                                                   230 
231 4. Format configuration                           231 4. Format configuration
232 -----------------------                           232 -----------------------
233                                                   233 
234 Frame buffer devices offer two ways to configu    234 Frame buffer devices offer two ways to configure the frame buffer format: the
235 legacy API and the FOURCC-based API.              235 legacy API and the FOURCC-based API.
236                                                   236 
237                                                   237 
238 The legacy API has been the only frame buffer     238 The legacy API has been the only frame buffer format configuration API for a
239 long time and is thus widely used by applicati    239 long time and is thus widely used by application. It is the recommended API
240 for applications when using RGB and grayscale     240 for applications when using RGB and grayscale formats, as well as legacy
241 non-standard formats.                             241 non-standard formats.
242                                                   242 
243 To select a format, applications set the fb_va    243 To select a format, applications set the fb_var_screeninfo bits_per_pixel field
244 to the desired frame buffer depth. Values up t    244 to the desired frame buffer depth. Values up to 8 will usually map to
245 monochrome, grayscale or pseudocolor visuals,     245 monochrome, grayscale or pseudocolor visuals, although this is not required.
246                                                   246 
247 - For grayscale formats, applications set the     247 - For grayscale formats, applications set the grayscale field to one. The red,
248   blue, green and transp fields must be set to    248   blue, green and transp fields must be set to 0 by applications and ignored by
249   drivers. Drivers must fill the red, blue and    249   drivers. Drivers must fill the red, blue and green offsets to 0 and lengths
250   to the bits_per_pixel value.                    250   to the bits_per_pixel value.
251                                                   251 
252 - For pseudocolor formats, applications set th    252 - For pseudocolor formats, applications set the grayscale field to zero. The
253   red, blue, green and transp fields must be s    253   red, blue, green and transp fields must be set to 0 by applications and
254   ignored by drivers. Drivers must fill the re    254   ignored by drivers. Drivers must fill the red, blue and green offsets to 0
255   and lengths to the bits_per_pixel value.        255   and lengths to the bits_per_pixel value.
256                                                   256 
257 - For truecolor and directcolor formats, appli    257 - For truecolor and directcolor formats, applications set the grayscale field
258   to zero, and the red, blue, green and transp    258   to zero, and the red, blue, green and transp fields to describe the layout of
259   color components in memory::                    259   color components in memory::
260                                                   260 
261     struct fb_bitfield {                          261     struct fb_bitfield {
262         __u32 offset;                   /* beg    262         __u32 offset;                   /* beginning of bitfield        */
263         __u32 length;                   /* len    263         __u32 length;                   /* length of bitfield           */
264         __u32 msb_right;                /* !=     264         __u32 msb_right;                /* != 0 : Most significant bit is */
265                                         /* rig    265                                         /* right */
266     };                                            266     };
267                                                   267 
268   Pixel values are bits_per_pixel wide and are    268   Pixel values are bits_per_pixel wide and are split in non-overlapping red,
269   green, blue and alpha (transparency) compone    269   green, blue and alpha (transparency) components. Location and size of each
270   component in the pixel value are described b    270   component in the pixel value are described by the fb_bitfield offset and
271   length fields. Offset are computed from the     271   length fields. Offset are computed from the right.
272                                                   272 
273   Pixels are always stored in an integer numbe    273   Pixels are always stored in an integer number of bytes. If the number of
274   bits per pixel is not a multiple of 8, pixel    274   bits per pixel is not a multiple of 8, pixel values are padded to the next
275   multiple of 8 bits.                             275   multiple of 8 bits.
276                                                   276 
277 Upon successful format configuration, drivers     277 Upon successful format configuration, drivers update the fb_fix_screeninfo
278 type, visual and line_length fields depending     278 type, visual and line_length fields depending on the selected format.
279                                                   279 
280                                                   280 
281 The FOURCC-based API replaces format descripti    281 The FOURCC-based API replaces format descriptions by four character codes
282 (FOURCC). FOURCCs are abstract identifiers tha    282 (FOURCC). FOURCCs are abstract identifiers that uniquely define a format
283 without explicitly describing it. This is the     283 without explicitly describing it. This is the only API that supports YUV
284 formats. Drivers are also encouraged to implem    284 formats. Drivers are also encouraged to implement the FOURCC-based API for RGB
285 and grayscale formats.                            285 and grayscale formats.
286                                                   286 
287 Drivers that support the FOURCC-based API repo    287 Drivers that support the FOURCC-based API report this capability by setting
288 the FB_CAP_FOURCC bit in the fb_fix_screeninfo    288 the FB_CAP_FOURCC bit in the fb_fix_screeninfo capabilities field.
289                                                   289 
290 FOURCC definitions are located in the linux/vi    290 FOURCC definitions are located in the linux/videodev2.h header. However, and
291 despite starting with the V4L2_PIX_FMT_prefix,    291 despite starting with the V4L2_PIX_FMT_prefix, they are not restricted to V4L2
292 and don't require usage of the V4L2 subsystem.    292 and don't require usage of the V4L2 subsystem. FOURCC documentation is
293 available in Documentation/userspace-api/media    293 available in Documentation/userspace-api/media/v4l/pixfmt.rst.
294                                                   294 
295 To select a format, applications set the grays    295 To select a format, applications set the grayscale field to the desired FOURCC.
296 For YUV formats, they should also select the a    296 For YUV formats, they should also select the appropriate colorspace by setting
297 the colorspace field to one of the colorspaces    297 the colorspace field to one of the colorspaces listed in linux/videodev2.h and
298 documented in Documentation/userspace-api/medi    298 documented in Documentation/userspace-api/media/v4l/colorspaces.rst.
299                                                   299 
300 The red, green, blue and transp fields are not    300 The red, green, blue and transp fields are not used with the FOURCC-based API.
301 For forward compatibility reasons applications    301 For forward compatibility reasons applications must zero those fields, and
302 drivers must ignore them. Values other than 0     302 drivers must ignore them. Values other than 0 may get a meaning in future
303 extensions.                                       303 extensions.
304                                                   304 
305 Upon successful format configuration, drivers     305 Upon successful format configuration, drivers update the fb_fix_screeninfo
306 type, visual and line_length fields depending     306 type, visual and line_length fields depending on the selected format. The type
307 and visual fields are set to FB_TYPE_FOURCC an    307 and visual fields are set to FB_TYPE_FOURCC and FB_VISUAL_FOURCC respectively.
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php