Changeset 5da255df6aa85568a0b8d736701472aeb0222057
- Timestamp:
- 06/14/08 10:09:06
(3 months ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1213430946 +0200
- git-parent:
[21d5beede3b4df8a588b131a3ec598f2b84bc6de]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1213366566 +0200
- Message:
Fix indentation in some of the structs defintions.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3561b9b |
r5da255d |
|
| 133 | 133 | /* System information */ |
|---|
| 134 | 134 | int i_tty; /* tty device handle */ |
|---|
| 135 | | bool b_tty; |
|---|
| | 135 | bool b_tty; |
|---|
| 136 | 136 | struct termios old_termios; |
|---|
| 137 | 137 | |
|---|
| … | … | |
| 145 | 145 | struct fb_var_screeninfo old_info; /* original mode information */ |
|---|
| 146 | 146 | struct fb_var_screeninfo var_info; /* current mode information */ |
|---|
| 147 | | bool b_pan; /* does device supports panning ? */ |
|---|
| | 147 | bool b_pan; /* does device supports panning ? */ |
|---|
| 148 | 148 | struct fb_cmap fb_cmap; /* original colormap */ |
|---|
| 149 | 149 | uint16_t *p_palette; /* original palette */ |
|---|
| 150 | | bool b_hw_accel; /* has hardware support */ |
|---|
| | 150 | bool b_hw_accel; /* has hardware support */ |
|---|
| 151 | 151 | |
|---|
| 152 | 152 | /* Video information */ |
|---|
| 153 | 153 | uint32_t i_width; |
|---|
| 154 | 154 | uint32_t i_height; |
|---|
| 155 | | int i_aspect; |
|---|
| 156 | | int i_bytes_per_pixel; |
|---|
| 157 | | bool b_auto; /* Automatically adjust video size to fb size */ |
|---|
| | 155 | int i_aspect; |
|---|
| | 156 | int i_bytes_per_pixel; |
|---|
| | 157 | bool b_auto; /* Automatically adjust video size to fb size */ |
|---|
| 158 | 158 | vlc_fourcc_t i_chroma; |
|---|
| 159 | 159 | |
|---|
| 160 | 160 | /* Video memory */ |
|---|
| 161 | | uint8_t * p_video; /* base adress */ |
|---|
| | 161 | uint8_t *p_video; /* base adress */ |
|---|
| 162 | 162 | size_t i_page_size; /* page size */ |
|---|
| 163 | 163 | }; |
|---|