/usr/src/castle-game-engine-5.2.0/window/unix/castlexf86vmode.pas is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | {
Copyright 2002-2014 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
----------------------------------------------------------------------------
}
{ This is a Pascal wrapper for Xxf86vm library.
This library allows changing screen resolution under X11.
Note that libXxf86vm is usually (at least on my Debian testing)
distributed only as static library (".a" instead of ".so").
So @code($linklib Xxf86vm) usually links you to static library.
(this is of course no reason to worry, I just thought I may say it here...)
Original C header is in @code(X11/include/extensions/xf86vmode.h) .
Translation done by Kambi by hand and using some regexps.
Primitive types translation:
@preformatted(
short = SmallInt;
unsigned short = Word;
int = long = LongInt;
unsigned int = unsigned long = LongWord;
float = Single;
double = Double;
Bool = LongBool;
)
@preformatted(
------------------------------------------------------------------------
$Xorg: xf86vmode.h,v 1.3 2000/08/18 04:05:46 coskrey Exp $
$XFree86: xc/include/extensions/xf86vmode.h,v 3.29 2001/05/06 00:47:35 mvojkovi Exp $
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL Kaleb S. KEITHLEY BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
THIS IS NOT AN X CONSORTIUM STANDARD OR AN X PROJECT TEAM SPECIFICATION
)
@exclude (This is only a C header translation --- no nice PasDoc docs.)
}
unit CastleXF86VMode;
{$ifdef VER1_0_10}
{$FATAL This unit cannot be safely
used with FPC 1.0.10 due to some bugs in compiler (that were not present
in FPC 1.0.6) -- VideoReset in CastleWindow after --fullscreen-custom causes
AccessViolation. }
{$endif}
interface
uses Xlib, X;
{$linklib Xxf86vm}
{$define vmdecl := cdecl; external}
const
{ }
X_XF86VidModeQueryVersion = 0;
X_XF86VidModeGetModeLine = 1;
X_XF86VidModeModModeLine = 2;
X_XF86VidModeSwitchMode = 3;
X_XF86VidModeGetMonitor = 4;
X_XF86VidModeLockModeSwitch = 5;
X_XF86VidModeGetAllModeLines = 6;
X_XF86VidModeAddModeLine = 7;
X_XF86VidModeDeleteModeLine = 8;
X_XF86VidModeValidateModeLine = 9;
X_XF86VidModeSwitchToMode = 10;
X_XF86VidModeGetViewPort = 11;
X_XF86VidModeSetViewPort = 12;
{* new for version 2.x of this extension *}
X_XF86VidModeGetDotClocks = 13;
X_XF86VidModeSetClientVersion = 14;
X_XF86VidModeSetGamma = 15;
X_XF86VidModeGetGamma = 16;
X_XF86VidModeGetGammaRamp = 17;
X_XF86VidModeSetGammaRamp = 18;
X_XF86VidModeGetGammaRampSize = 19;
CLKFLAG_PROGRAMABLE = 1;
{$ifdef XF86VIDMODE_EVENTS}
XF86VidModeNotify = 0;
XF86VidModeNumberEvents = XF86VidModeNotify + 1;
XF86VidModeNotifyMask = 00000001;
XF86VidModeNonEvent = 0;
XF86VidModeModeChange = 1;
{$else}
XF86VidModeNumberEvents = 0;
{$endif}
XF86VidModeBadClock = 0;
XF86VidModeBadHTimings = 1;
XF86VidModeBadVTimings = 2;
XF86VidModeModeUnsuitable = 3;
XF86VidModeExtensionDisabled = 4;
XF86VidModeClientNotLocal = 5;
XF86VidModeZoomLocked = 6;
XF86VidModeNumberErrors = XF86VidModeZoomLocked + 1;
type
TXF86VidModeModeLine = record
hdisplay: SmallInt;
hsyncstart: SmallInt;
hsyncend: SmallInt;
htotal: SmallInt;
hskew: SmallInt;
vdisplay: SmallInt;
vsyncstart: SmallInt;
vsyncend: SmallInt;
vtotal: SmallInt;
flags: LongWord;
privsize: LongInt;
{ private is a C++ reserved word }
c_private: PLongInt;
end;
PXF86VidModeModeLine = ^TXF86VidModeModeLine;
TXF86VidModeModeInfo = record
dotclock: LongWord;
hdisplay: SmallInt;
hsyncstart: SmallInt;
hsyncend: SmallInt;
htotal: SmallInt;
hskew: SmallInt;
vdisplay: SmallInt;
vsyncstart: SmallInt;
vsyncend: SmallInt;
vtotal: SmallInt;
flags: LongWord;
privsize: LongInt;
c_private: PLongInt;
end;
PXF86VidModeModeInfo = ^TXF86VidModeModeInfo;
{ PPXF86VidModeModeInfo can be also treated as PArray_PXF86VidModeModeInfo }
PPXF86VidModeModeInfo = ^PXF86VidModeModeInfo;
PPPXF86VidModeModeInfo = ^PPXF86VidModeModeInfo;
TArray_PXF86VidModeModeInfo = array[0..High(Word)] of PXF86VidModeModeInfo;
PArray_PXF86VidModeModeInfo = ^TArray_PXF86VidModeModeInfo;
TXF86VidModeSyncRange = record
hi: Single;
lo: Single;
end;
PXF86VidModeSyncRange = ^TXF86VidModeSyncRange;
TXF86VidModeMonitor = record
vendor: PChar;
model: PChar;
EMPTY: Single;
nhsync: byte;
hsync: PXF86VidModeSyncRange;
nvsync: byte;
vsync: PXF86VidModeSyncRange;
end;
PXF86VidModeMonitor = ^TXF86VidModeMonitor;
TXF86VidModeNotifyEvent = record
c_type: LongInt; {< of event }
serial: LongInt; {< # of last request processed by server }
send_event: LongBool; {< true if this came from a SendEvent req }
display: PDisplay; {< Display the event was read from }
root: TWindow; {< root window of event screen }
state: LongInt; {< What happened }
kind: LongInt; {< What happened }
forced: LongBool; {< extents of new region }
time: TTime; {< event timestamp }
end;
TXF86VidModeGamma = record
red: Single; {< Red Gamma value }
green: Single; {< Green Gamma value }
blue: Single; {< Blue Gamma value }
end;
PXF86VidModeGamma = ^TXF86VidModeGamma;
{ Macros: }
{ }
function XF86VidModeSelectNextMode(dpy: PDisplay; screen: LongInt): LongBool;
function XF86VidModeSelectPrevMode(dpy: PDisplay; screen: LongInt): LongBool;
function XF86VidModeQueryVersion(
dpy: PDisplay;
majorVersion: PLongInt;
minorVersion: PLongInt
): LongBool; vmdecl;
function XF86VidModeQueryExtension(
dpy: PDisplay;
event_base: PLongInt;
error_base: PLongInt
): LongBool; vmdecl;
function XF86VidModeSetClientVersion(
dpy: PDisplay
): LongBool; vmdecl;
function XF86VidModeGetModeLine(
dpy: PDisplay;
screen: LongInt;
dotclock: PLongInt;
modeline: PXF86VidModeModeLine
): LongBool; vmdecl;
function XF86VidModeGetAllModeLines(
dpy: PDisplay;
screen: LongInt;
modecount: PLongInt;
modelinesPtr: PPPXF86VidModeModeInfo
): LongBool; vmdecl;
function XF86VidModeAddModeLine(
dpy: PDisplay;
screen: LongInt;
new_modeline: PXF86VidModeModeInfo;
after_modeline: PXF86VidModeModeInfo
): LongBool; vmdecl;
function XF86VidModeDeleteModeLine(
dpy: PDisplay;
screen: LongInt;
modeline: PXF86VidModeModeInfo
): LongBool; vmdecl;
function XF86VidModeModModeLine(
dpy: PDisplay;
screen: LongInt;
modeline: PXF86VidModeModeLine
): LongBool; vmdecl;
function XF86VidModeValidateModeLine(
dpy: PDisplay;
screen: LongInt;
modeline: PXF86VidModeModeInfo
): TStatus; vmdecl;
function XF86VidModeSwitchMode(
dpy: PDisplay;
screen: LongInt;
zoom: LongInt
): LongBool; vmdecl;
function XF86VidModeSwitchToMode(
dpy: PDisplay;
screen: LongInt;
modeline: PXF86VidModeModeInfo
): LongBool; vmdecl;
function XF86VidModeLockModeSwitch(
dpy: PDisplay;
screen: LongInt;
lock: LongInt
): LongBool; vmdecl;
function XF86VidModeGetMonitor(
dpy: PDisplay;
screen: LongInt;
monitor: PXF86VidModeMonitor
): LongBool; vmdecl;
function XF86VidModeGetViewPort(
dpy: PDisplay;
screen: LongInt;
x_return: PLongInt;
y_return: PLongInt
): LongBool; vmdecl;
function XF86VidModeSetViewPort(
dpy: PDisplay;
screen: LongInt;
x: LongInt;
y: LongInt
): LongBool; vmdecl;
function XF86VidModeGetDotClocks(
dpy: PDisplay;
screen: LongInt;
flags_return: PLongInt;
number_of_clocks_return: PLongInt;
max_dot_clock_return: PLongInt;
clocks_return: PPLongInt
): LongBool; vmdecl;
function XF86VidModeGetGamma(
dpy: PDisplay;
screen: LongInt;
Gamma: PXF86VidModeGamma
): LongBool; vmdecl;
function XF86VidModeSetGamma(
dpy: PDisplay;
screen: LongInt;
Gamma: PXF86VidModeGamma
): LongBool; vmdecl;
function XF86VidModeSetGammaRamp(
dpy: PDisplay;
screen: LongInt;
size: LongInt;
red_array: PWord;
green_array: PWord;
blue_array: PWord
): LongBool; vmdecl;
function XF86VidModeGetGammaRamp(
dpy: PDisplay;
screen: LongInt;
size: LongInt;
red_array: PWord;
green_array: PWord;
blue_array: PWord
): LongBool; vmdecl;
function XF86VidModeGetGammaRampSize(
dpy: PDisplay;
screen: LongInt;
size: PLongInt
): LongBool; vmdecl;
implementation
function XF86VidModeSelectNextMode(dpy: PDisplay; screen: LongInt): LongBool;
begin
Result := XF86VidModeSwitchMode(dpy, screen, 1);
end;
function XF86VidModeSelectPrevMode(dpy: PDisplay; screen: LongInt): LongBool;
begin
Result := XF86VidModeSwitchMode(dpy, screen, -1);
end;
end.
|