ChangeLog revision fa120d7c
1commit 31f5fa6a47db154abb47cf16e9f6cc4d983ad371 2Author: Aaron Plattner <aplattner@nvidia.com> 3Date: Thu Mar 27 11:37:07 2014 -0700 4 5 xrandr 1.4.2 6 7 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 8 9commit 934a424a05a296c0b8af015476e11b191d55eba3 10Author: Aaron Plattner <aplattner@nvidia.com> 11Date: Fri Mar 21 10:35:56 2014 -0700 12 13 xrandr: document how to disconnect RandR 1.4 providers 14 15 Commit a6217be2d5a93a4c7b48f4081a4a8e14c3c97014 restored the ability to 16 disconnect RandR 1.4 providers from each other, but it's not clear from the 17 documentation how to actually do that. Try to clarify by mentioning it in the 18 man page. 19 20 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 21 Reviewed-by: Dave Airlie <airlied@redhat.com> 22 23commit a6217be2d5a93a4c7b48f4081a4a8e14c3c97014 24Author: Dave Airlie <airlied@gmail.com> 25Date: Fri May 3 10:05:04 2013 +1000 26 27 xrandr: allow disconnecting of offload and outputs 28 29 Before the lookup code passing a 0 XID would disconnect, 30 this fixes it backup. 31 32 Signed-off-by: Dave Airlie <airlied@redhat.com> 33 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 34 Tested-by: Aaron Plattner <aplattner@nvidia.com> 35 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 36 37commit 00c795e99fe29ecd56e05e915e508c7af0ac39ad 38Author: Ville Syrjälä <ville.syrjala@linux.intel.com> 39Date: Fri May 31 17:01:54 2013 +0300 40 41 xrandr: Use floating point for VTotal when calculating refresh rate 42 43 Interlaced modes generally have an odd VTotal, so we lose half a line 44 from VTotal when we divide by two. That causes the final refresh rate 45 to be slightly off. Make VTotal a double to avoid the problem. 46 47 Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> 48 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 49 50commit 8f9b993342fddfceaa1afbec2996ce10038f10d7 51Author: Ville Syrjälä <ville.syrjala@linux.intel.com> 52Date: Fri May 31 17:01:53 2013 +0300 53 54 xrandr: Use more decimal places when printing various rates 55 56 Using just one decimal place for dotclock and refresh rates loses quite 57 a bit of information. When dealing with 60Hz vs. 59.94Hz refresh rate 58 modes for example, it's useful to see at least two decimal places. For 59 the dotclock in similar cases, three decimal places seems quite a bit 60 better than just one. 61 62 Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> 63 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 64 65commit 7ede207f9064fd88427026e38818819c2c8422bb 66Author: Aaron Plattner <aplattner@nvidia.com> 67Date: Fri Jan 3 05:48:17 2014 -0800 68 69 Special-case printing of the GUID property 70 71 Rather than printing GUIDs as 16 signed decimal integers, print them in 72 {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} format. 73 74 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 75 Reviewed-by: Alex Deucher <alexander.deucher@amd.com> 76 77commit e7a19c8b5a26c8bfd76a7399a1a15eac01184261 78Author: Aaron Plattner <aplattner@nvidia.com> 79Date: Fri Jan 3 05:22:02 2014 -0800 80 81 Move EDID printing into a helper function 82 83 Localize the specialness of EDID printing by moving it into a single function, 84 print_edid, which prints the binary EDID data. Remove the is_edid parameter 85 from everything else. 86 87 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 88 Reviewed-by: Alex Deucher <alexander.deucher@amd.com> 89 90commit a29728ca9599fd08da1243e9b422ac26a24cc05b 91Author: Aaron Plattner <aplattner@nvidia.com> 92Date: Fri Jan 3 05:14:35 2014 -0800 93 94 Split output property printing into a helper function 95 96 Move the body of the code that prints the actual output property values into a 97 helper function. This will make it easier for this function to select 98 special-case property printers for properties that need special formatting. 99 100 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 101 Reviewed-by: Alex Deucher <alexander.deucher@amd.com> 102 103commit c5334bb4137d6ea7b8c8b10d51131b9450d1106b 104Author: Alan Coopersmith <alan.coopersmith@oracle.com> 105Date: Tue Jul 16 23:30:27 2013 -0700 106 107 xrandr 1.4.1 108 109commit 0e0b47341a45c138082d9f8047dcbdb91b90155d 110Author: Alan Coopersmith <alan.coopersmith@oracle.com> 111Date: Sat Jul 13 00:11:41 2013 -0700 112 113 Combine usage message strings 114 115 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 116 117commit 38772ec3b5a7216a88676f95b5edc764dd0a23d6 118Author: Alan Coopersmith <alan.coopersmith@oracle.com> 119Date: Sat Jul 13 00:07:26 2013 -0700 120 121 Declare capability_name() as returning const char * 122 123 Only used as an argument to printf. Clears gcc warnings: 124 xrandr.c: In function ‘capability_name’: 125 xrandr.c:237:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 126 xrandr.c:239:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 127 xrandr.c:241:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 128 xrandr.c:243:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 129 xrandr.c:245:5: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 130 131 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 132 133commit f53d8511d26a26e9bd6b1bc665f6283f1efd98d9 134Author: Thomas <fischer@unix-ag.uni-kl.de> 135Date: Fri Nov 9 14:33:08 2012 +0000 136 137 Bug 56923 - Make command line options consistent (single vs double dash) 138 139 Most of xrandr's command line options follow the system of single 140 dashes for single character options (e.g. "-v") and double dashes for 141 long options ("--version"). The only exceptions are "-display" and 142 "-help", most likely for historical reasons. To make the behavior 143 consistent across all options, the following patch adds "--display" 144 and "--help" as alternatives to the current inconsistency. The man 145 page got updated as well, recommending double-dash variants for both 146 options. The old behavior is still supported, so the patch should not 147 break any existing usage/script. 148 149 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 150 151commit bd1502f50f0c230798bdce99dec6efc76791c024 152Author: Thomas Klausner <wiz@NetBSD.org> 153Date: Sun Jun 2 21:30:39 2013 +0200 154 155 Protect config.h like usual. 156 157 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 158 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 159 160commit ace5e2b21b2a204f94c6452fa0d8f36699aec249 161Author: Andy Ritger <aritger@nvidia.com> 162Date: Thu May 2 01:20:27 2013 -0700 163 164 xrandr: calloc XRRModeInfo's passed to libXrandr. 165 166 The "--newmode" commandline option initializes an XRRModeInfo and passes 167 it into XRRCreateMode(). calloc(3) it to avoid uninitialized fields. 168 For consistency, calloc(3) all the places where umode_t's (the wrapper 169 structure for XRRModeInfo) are allocated. 170 171 Signed-off-by: Andy Ritger <aritger@nvidia.com> 172 Tested-by: Nikhil Mahale <nmahale@nvidia.com> 173 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 174 175commit eb17ad8adc9400f6ed252872f13ccf5551f9e2e9 176Author: Aaron Plattner <aplattner@nvidia.com> 177Date: Thu Feb 28 12:01:53 2013 -0800 178 179 Print spaces between XA_ATOM property values 180 181 Commit b26fd532b3dab222956ea27eef4e41345978b5b2 redid how xrandr prints 182 properties. It neglected to put spaces between the values of XA_ATOM 183 properties, so they all run together. For example, 184 185 audio: auto 186 supported: force-dvioffautoon 187 188 Fix this by putting a space after each atom name. In addition, some drivers 189 create property values with spaces in them, so put commas between entries to 190 disambiguate. For example, 191 192 Broadcast RGB: Automatic 193 supported: Automatic, Full, Limited 16:235 194 195 Do the same for properties with multiple valid ranges. 196 197 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 198 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 199 200commit 222f245fb3a00308cb3ff491f5c84ac9c69c3253 201Author: Aaron Plattner <aplattner@nvidia.com> 202Date: Tue Feb 12 13:24:38 2013 -0800 203 204 xrandr 1.4.0 205 206 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 207 208commit 3e5f160c4198a5160be5e9a3f21ba3f4130d4318 209Merge: dac72dbbc750 bd166184f6c1 210Author: Aaron Plattner <aplattner@nvidia.com> 211Date: Tue Feb 12 12:30:20 2013 -0800 212 213 Merge branch 'fixes' 214 215 Conflicts: 216 xrandr.c 217 218commit bd166184f6c1973ae2f5f99d040733db3e9e82cf 219Author: Aaron Plattner <aplattner@nvidia.com> 220Date: Wed Feb 6 14:21:57 2013 -0800 221 222 Cast XID to unsigned int to suppress a printf warning 223 224 Sorry I forgot about this in commit 138b6252c0cae6599b6c8a25ffa22ffe70f227c2. 225 That change introduced a warning: 226 227 xrandr.c|645 col 5| warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘XID’ [-Wformat] 228 229 Fix that by just casting the XID to unsigned int. 230 231 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 232 Reviewed-by: Daniel Dadap <ddadap@nvidia.com> 233 234commit 7fd4f18b649f22fad4dbf9fc64b69b3e7f172207 235Author: Aaron Plattner <aplattner@nvidia.com> 236Date: Wed Feb 6 11:13:06 2013 -0800 237 238 Bug #37043: adjust refresh rates for doublescan and interlace 239 240 These two flags halve and double, respectively, the effective refresh rate of a 241 mode. 242 243 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 244 Reviewed-by: Daniel Dadap <ddadap@nvidia.com> 245 246commit d752d524027fbc20d9fdee06fed173e454f15370 247Author: Aaron Plattner <aplattner@nvidia.com> 248Date: Wed Feb 6 10:10:03 2013 -0800 249 250 Bug #29603: document that there might be multiple preferred modes 251 252 The X server sorts the mode list for an output with preferred modes first, and 253 specifies how many preferred modes there are by setting the npreferred field in 254 the XRRModeInfo structure. 255 256 Update the man page to refer to preferred modes in the plural, and mention that 257 --auto and --preferred use the *first* preferred mode. 258 259 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 260 Reviewed-by: Daniel Dadap <ddadap@nvidia.com> 261 262commit b2f0bd198b1116e45389a6628b657b722b4102a4 263Author: Aaron Plattner <aplattner@nvidia.com> 264Date: Wed Feb 6 14:11:23 2013 -0800 265 266 Bug #14118: print usage() to stdout, proper errors for bad arguments 267 268 Print the usage() text to stdout instead of stderr, and then only if -help is 269 specified. Also allow --help for consistency. 270 271 For other command line syntax errors, introduce a new helper function argerr() 272 that prints errors of the form 273 274 xrandr: %s 275 Try './xrandr --help' for more information. 276 277 and exits. Use that to print proper error messages. 278 279 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 280 Reviewed-by: Daniel Dadap <ddadap@nvidia.com> 281 282commit 0a26e076e10a3c7461d59c830cdc10688d66824f 283Author: Aaron Plattner <aplattner@nvidia.com> 284Date: Wed Feb 6 13:08:58 2013 -0800 285 286 Bug #11397: check that numeric --orientation arguments are in range 287 288 The only valid parameters to -o (--orientation) are 0, 1, 2, 3, normal, left, 289 inverted, and right. xrandr converts the strings to numbers and then checks 290 that they're within range, but doesn't validate them if it was numeric to begin 291 with. 292 293 Move the range check outside of the if statement so that out-of-range numeric 294 values are rejected properly. 295 296 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 297 Reviewed-by: Daniel Dadap <ddadap@nvidia.com> 298 299commit dac72dbbc7501483eccec71bbf0db05a56756109 300Author: Aaron Plattner <aplattner@nvidia.com> 301Date: Fri Aug 24 21:43:13 2012 -0700 302 303 xrandr: Fix variable declaration warnings 304 305 There are piles of places in the code where a variable shadows either another 306 variable or a global function: 307 308 xrandr.c:545:35: warning: declaration of ‘index’ shadows a global declaration [-Wshadow] 309 xrandr.c:574:9: warning: declaration of ‘index’ shadows a global declaration [-Wshadow] 310 xrandr.c:967:19: warning: declaration of ‘gamma’ shadows a global declaration [-Wshadow] 311 xrandr.c:1329:16: warning: declaration of ‘gamma’ shadows a global declaration [-Wshadow] 312 xrandr.c:2055:28: warning: declaration of ‘outputs’ shadows a global declaration [-Wshadow] 313 xrandr.c:2068:29: warning: declaration of ‘outputs’ shadows a global declaration [-Wshadow] 314 xrandr.c:2928:16: warning: declaration of ‘output’ shadows a previous local [-Wshadow] 315 xrandr.c:2995:15: warning: declaration of ‘output’ shadows a previous local [-Wshadow] 316 xrandr.c:3016:15: warning: declaration of ‘j’ shadows a previous local [-Wshadow] 317 xrandr.c:3018:19: warning: declaration of ‘rotations’ shadows a previous local [-Wshadow] 318 xrandr.c:3116:15: warning: declaration of ‘crtc’ shadows a previous local [-Wshadow] 319 xrandr.c:3170:8: warning: declaration of ‘k’ shadows a previous local [-Wshadow] 320 xrandr.c:3243:20: warning: declaration of ‘mode’ shadows a previous local [-Wshadow] 321 322 'index' and 'gamma' are C library functions: 323 324 index (3) - locate character in string 325 gamma (3) - (logarithm of the) gamma function 326 327 The rest of these are either variables or function parameters. 328 329 When possible, move the declaration of a variable into the block where it is 330 used, including in cases where the same variable is used in multiple blocks but 331 the later block doesn't depend on the value from the earlier block. 332 333 In a few cases, rename the variable in the outer scope to be more specific (e.g. 334 output -> config_output) so the more generic variable in the inner scope (e.g. 335 the 'output' variable used to iterate over all outputs) doesn't have to change. 336 337 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 338 Reviewed-by: Andy Ritger <aritger@nvidia.com> 339 340commit 138b6252c0cae6599b6c8a25ffa22ffe70f227c2 341Author: Aaron Plattner <aplattner@nvidia.com> 342Date: Mon Feb 4 16:17:24 2013 -0800 343 344 xrandr: look for providers by name or xid 345 346 Use the name_t infrastructure to allow specifying providers by name, index, or 347 XID. This means that numbers without a "0x" prefix will now be interpreted as a 348 indices rather than XIDs. To match that, print provider XIDs in hexadecimal. 349 350 Print an error if a provider-related option is specified and RandR 1.4 isn't 351 supported. 352 353 Make get_screen robust against being called multiple times. 354 355 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 356 Reviewed-by: Dave Airlie <airlied@redhat.com> 357 358commit a93b77b15fa2463c7fd06c6898b9c9f737c3ae8a 359Author: Aaron Plattner <aplattner@nvidia.com> 360Date: Mon Feb 4 16:05:11 2013 -0800 361 362 xrandr: make providers a first-class citizen 363 364 Create a struct _provider to match the existing output, crtc, etc. objects. 365 Build that from a new get_providers() function. Use that to populate the list 366 when querying the providers. 367 368 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 369 Reviewed-by: Dave Airlie <airlied@redhat.com> 370 371commit 8ce9d1fa48a7556e9aee090e5d72566dbb9a32f8 372Author: Aaron Plattner <aplattner@nvidia.com> 373Date: Mon Feb 4 15:20:21 2013 -0800 374 375 man: document provider options 376 377 I hope I got the --setprovideroffloadsink parameters the right way around. 378 379 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 380 Reviewed-by: Dave Airlie <airlied@redhat.com> 381 382commit d07ef58f0cb6920dedc00c1e39cc6a5d0f31775e 383Author: Alan Coopersmith <alan.coopersmith@oracle.com> 384Date: Sun Jan 20 12:32:15 2013 -0800 385 386 Fix -Wformat warnings about passing longs where ints were expected 387 388 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 389 390commit ee548dde0f5bcc6503ad2f74af5261fbf022dada 391Author: Alan Coopersmith <alan.coopersmith@oracle.com> 392Date: Sun Jan 20 12:28:04 2013 -0800 393 394 Mark fatal() and warning() as taking printf-style arguments 395 396 Silences -Wformat-nonliteral warnings about them passing through 397 unknown format arguments to vfprintf. 398 399 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 400 401commit 77b03188b14cdef4523184a73b25fb2703d52685 402Author: Alan Coopersmith <alan.coopersmith@oracle.com> 403Date: Sun Jan 20 12:24:24 2013 -0800 404 405 config: Add missing AC_CONFIG_SRCDIR 406 407 Regroup AC statements under the Autoconf initialization section. 408 Regroup AM statements under the Automake initialization section. 409 410 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 411 412commit a9a92e85b2f8ea54855a3b45eb0882d7da50c1a8 413Author: Colin Walters <walters@verbum.org> 414Date: Wed Jan 16 13:02:57 2013 -0500 415 416 autogen.sh: Honor NOCONFIGURE=1 417 418 See http://people.gnome.org/~walters/docs/build-api.txt 419 420 Signed-off-by: Adam Jackson <ajax@redhat.com> 421 422commit 4a15ed3b1edd22d67307620f2265faf365700519 423Author: Adam Jackson <ajax@redhat.com> 424Date: Wed Jan 16 13:03:39 2013 -0500 425 426 configure: Drop AM_MAINTAINER_MODE 427 428 Signed-off-by: Adam Jackson <ajax@redhat.com> 429 430commit 094b40e89707828df2bb7b204a97eed256a3c3fd 431Author: Pierre-Loup A. Griffais <pgriffais@nvidia.com> 432Date: Wed Dec 19 12:32:03 2012 -0800 433 434 xrandr: print primary output 435 436 Sample output: 437 438 LVDS-0 connected primary 1920x1080+1920+120 [...] 439 440 Signed-off-by: Pierre-Loup A. Griffais <pgriffais@nvidia.com> 441 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 442 Tested-by: Aaron Plattner <aplattner@nvidia.com> 443 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 444 445commit b26fd532b3dab222956ea27eef4e41345978b5b2 446Author: Andy Ritger <aritger@nvidia.com> 447Date: Fri Sep 7 17:58:46 2012 -0700 448 449 xrandr: generalize output property printing 450 451 Signed-off-by: Andy Ritger <aritger@nvidia.com> 452 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 453 454commit 7a22279cadf7d1a2064cf985acc015401407d71c 455Author: Andy Ritger <aritger@nvidia.com> 456Date: Fri Sep 7 17:58:45 2012 -0700 457 458 xrandr: extend '--set' syntax to allow a comma-separated list of values 459 460 Signed-off-by: Andy Ritger <aritger@nvidia.com> 461 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 462 463commit 7cb20881991c8bcf7e8fa0af6ad0f85682f98e1f 464Author: Dave Airlie <airlied@redhat.com> 465Date: Fri Jan 20 17:40:41 2012 +0000 466 467 xrandr: add provider interfaces 468 469 This adds an initial interface to list and configure offload and output 470 providers. 471 472 Signed-off-by: Dave Airlie <airlied@redhat.com> 473 474commit a36e6d38ffd9831188758658ff36a0b88e43ba67 475Author: Aaron Plattner <aplattner@nvidia.com> 476Date: Fri Aug 24 21:02:26 2012 -0700 477 478 xrandr: Fix string constness bugs 479 480 Sufficiently new versions of GCC treat string literals as "const char *" by 481 default. This means that several places that assign, return, or initialize 482 char* from a string literal generates a warning: 483 484 xrandr.c:54:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 485 xrandr.c:55:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 486 xrandr.c:56:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 487 xrandr.c:57:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 488 xrandr.c:58:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 489 xrandr.c:61:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 490 xrandr.c:62:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 491 xrandr.c:63:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 492 xrandr.c:64:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 493 xrandr.c:65:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 494 xrandr.c:69:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 495 xrandr.c:70:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 496 xrandr.c:71:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 497 xrandr.c:72:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 498 xrandr.c:73:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 499 xrandr.c:74:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 500 xrandr.c:80:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 501 xrandr.c:81:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 502 xrandr.c:82:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 503 xrandr.c:83:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 504 xrandr.c:84:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 505 xrandr.c:85:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 506 xrandr.c:86:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 507 xrandr.c:87:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 508 xrandr.c:88:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 509 xrandr.c:189:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 510 xrandr.c:193:5: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 511 xrandr.c:202:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 512 xrandr.c:204:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 513 xrandr.c:206:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 514 xrandr.c:208:2: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 515 xrandr.c:210:5: warning: return discards ‘const’ qualifier from pointer target type [enabled by default] 516 xrandr.c:359:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 517 xrandr.c:360:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 518 xrandr.c:361:5: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 519 xrandr.c:593:23: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 520 xrandr.c:1189:28: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 521 xrandr.c:1191:28: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 522 xrandr.c:1587:39: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 523 xrandr.c:1588:30: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 524 xrandr.c:1589:38: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 525 xrandr.c:1590:48: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 526 xrandr.c:1591:42: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 527 xrandr.c:1592:25: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 528 xrandr.c:2544:28: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 529 xrandr.c:2546:28: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 530 xrandr.c:2585:28: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] 531 xrandr.c:3228:17: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] 532 533 Fix as many of these as possible. This introduces one problem: 534 XRRSetCrtcTransform takes a non-const char* filter parameter even though it 535 doesn't actually modify the string. Instead of trying to work around that, just 536 live with the warning for now: 537 538 xrandr.c:1459:9: warning: passing argument 4 of ‘XRRSetCrtcTransform’ discards ‘const’ qualifier from pointer target type [enabled by default] 539 /X/include/X11/extensions/Xrandr.h:383:1: note: expected ‘char *’ but argument is of type ‘const char *’ 540 541 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 542 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 543 544commit b501dd3adfac13e15e619898d4447d83b8301dd3 545Author: Andy Ritger <aritger@nvidia.com> 546Date: Fri Aug 24 15:53:09 2012 -0700 547 548 xrandr: compute gamma-correction in [0,2^sigbits) 549 550 The gamma-correction lookup table values are 16:16:16 X Colors, where the 551 MSBs are programmed into the hardware lookup table. Rather than compute 552 values over the entire range [0,65536) (where values below 2^(16 - sigbits) 553 will receive the same hardware value), compute values over the range 554 [0,2^sigbits) and left shift by (16 - sigbits) into the MSBs. 555 556 Signed-off-by: Andy Ritger <aritger@nvidia.com> 557 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 558 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 559 560commit 90afd01788be7bf19e441a59dca0d8057c5267b1 561Author: Andy Ritger <aritger@nvidia.com> 562Date: Fri Aug 24 15:53:08 2012 -0700 563 564 xrandr: fix gamma == 1.0 && sigbits != 8 565 566 The gamma-correction lookup table managed through XRR[GS]etCrtcGamma is 567 2^n in size, where 'n' is the number of significant bits in the X Color. 568 Each element in the gamma-correction lookup table is a 16:16:16 X Color 569 (i.e., in the range [0,65536) ). The significant bits of each component 570 of each element in the lookup table are programmed into the hardware 571 lookup table. Meaningful values in the gamma-correction lookup table 572 are thus in the range [0,2^sigbits), where all values are shifted into 573 the MSBs (i.e., left shifted by (16 - sigificant bits)). 574 575 Signed-off-by: Andy Ritger <aritger@nvidia.com> 576 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 577 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 578 579commit 6bf48ae8d8db58ab74182383e54332f120f024c2 580Author: Andy Ritger <aritger@nvidia.com> 581Date: Fri Aug 24 15:53:07 2012 -0700 582 583 xrandr: use 1/gamma to compute gamma-correction 584 585 To compute a gamma *correction* lookup table, use the specified gamma 586 value as the divisor in (1.0/gamma). This matches the semantics of 587 xgamma(1) and the "gamma-value" and "{red,green,blue}-gamma" xorg.conf(5) 588 options. 589 590 For more details, see: 591 http://www.poynton.com/PDFs/TIDV/Gamma.pdf (Gamma in computer graphics, page 17) 592 http://cgit.freedesktop.org/xorg/xserver/tree/hw/xfree86/common/xf86cmap.c:ComputeGamma() 593 594 Signed-off-by: Andy Ritger <aritger@nvidia.com> 595 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 596 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 597 598commit 755234bd2ce0f3acde6507aba94b1e53a5a72f9b 599Author: Eric S. Raymond <esr@thyrsus.com> 600Date: Thu Aug 23 12:26:57 2012 -0400 601 602 Running text interspersed with options prevents DocBook translation; remove. 603 604 The information the text conveys is not really needed at that point, 605 either. It's duplicated later in the manual page. 606 607 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 608 609commit b9d260a49961b5e311e77e8600e7e5a8f2e8d475 610Author: Keith Packard <keithp@keithp.com> 611Date: Tue May 1 21:53:02 2012 -0700 612 613 keystone.5c: cairo-5 box semantics changed default layout 614 615 cairo-5c version 1.6 includes a new 2D box layout widget that 616 needs widget stretch defined in both dimensions to create 617 the desired layout. 618 619 Signed-off-by: Keith Packard <keithp@keithp.com> 620 621commit 1e5a973ad2da9aaf3c025656db4ba83ff9e6c207 622Author: Aaron Plattner <aplattner@nvidia.com> 623Date: Mon Apr 23 12:41:15 2012 -0700 624 625 Add a --scale-from option 626 627 A typical case for wanting to specify a scale on an output is making your 628 framebuffer be one size and scaling it to fill an output of a different size. 629 Instead of making the user calculate the scaling factors to be specified by 630 --scale, add a new option, --scale-from, that lets the user specify the 631 framebuffer size directly. Compute the appropriate transform to achieve the 632 desired target size. 633 634 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 635 Reviewed-by: Andy Ritger <aritger@nvidia.com> 636 637commit 45b21c41ef3abd73de11d1adc6f5475105e1a5b7 638Author: Pierre-Loup A. Griffais <pgriffais@nvidia.com> 639Date: Tue Mar 20 16:46:22 2012 -0700 640 641 xrandr: move transform limit checking after scaling 642 643 This would trigger for legit scaled matrices, resulting in the wrong 644 extents getting computed. 645 646 Signed-off-by: Pierre-Loup A. Griffais <pgriffais@nvidia.com> 647 Reviewed-by: Keith Packard <keithp@keithp.com> 648 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 649 650commit 8ca08e32ee7daae75992cbf1f554ca9a389e5420 651Author: Keith Packard <keithp@keithp.com> 652Date: Wed Feb 29 16:26:25 2012 +1300 653 654 Update keystone program to run with new nichrome bits 655 656 Will also work with old nichrome bits. 657 658 Signed-off-by: Keith Packard <keithp@keithp.com> 659 660commit 5161ba39a3c13caa5cab953a17f509a6a5b09e7b 661Author: Jeremy Huddleston <jeremyhu@apple.com> 662Date: Fri Nov 11 11:34:38 2011 -0800 663 664 Include strings.h for strcasecmp 665 666 Our minimum requirement for X11 is currently Unix98. Unix98 provides 667 strcasecmp in <strings.h>. This commit fixes implicit declarations 668 of this function on systems that closely adhere to the standard. 669 670 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 671 672commit e68059e9ecc4225360a522138aedcedad7fe117f 673Author: Keith Packard <keithp@keithp.com> 674Date: Sat Aug 6 19:06:42 2011 -0700 675 676 xrandr: Preserve current mode when switching crtcs 677 678 When switching output crtcs, preserve any current mode in preference 679 to selecting whatever mode is currently in use on that crtc. 680 681 Signed-off-by: Keith Packard <keithp@keithp.com> 682 683commit 5185a18a016d9ccbfea3a3cdb314041268222708 684Author: Adam Jackson <ajax@redhat.com> 685Date: Wed Jul 20 14:34:19 2011 -0400 686 687 Document the rarer --newmode flags in --help output 688 689 Signed-off-by: Adam Jackson <ajax@redhat.com> 690 691commit 9e7a1f88de66c65cca1eb732278f76dab125f30e 692Author: Alan Coopersmith <alan.coopersmith@oracle.com> 693Date: Wed Jun 29 21:18:23 2011 -0700 694 695 xrandr 1.3.5 696 697 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 698 699commit a187677a93a215ccbba819f98425a6c682a50a6c 700Author: Jeremy Huddleston <jeremyhu@apple.com> 701Date: Mon May 9 09:26:34 2011 -0700 702 703 find_mode: Search for the mode closes to the specified rate 704 705 This was the intention of d9aeb4a7544ad4a33f6f54bc46bff5cdf231a986, but 706 find_mode was still picking the first string match rather than the 707 match with the closest refresh rate. 708 709 xrandr.c:740:3: warning: Value stored to 'bestDist' is never read 710 bestDist = dist; 711 ^ ~~~~ 712 713 Found-by: clang static analyzer 714 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 715 716commit 30e9137bf94f58f66cc6883b0a47eab3159c8be6 717Author: Jeremy Huddleston <jeremyhu@apple.com> 718Date: Sun May 8 16:42:50 2011 -0700 719 720 Dead code removal 721 722 xrandr.c:2978:33: warning: Value stored to 'first' is never read 723 if (!first) printf (" "); first = False; 724 ^ ~~~~~ 725 xrandr.c:2966:30: warning: Value stored to 'first' is never read 726 if (!first) printf (" "); first = False; 727 ^ ~~~~~ 728 729 Found-by: clang static analyzer 730 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 731 732commit 1e48aad532aa19a35efbee24cddca4c43e02afe7 733Author: Jeremy Huddleston <jeremyhu@apple.com> 734Date: Sun May 8 16:35:47 2011 -0700 735 736 Dead code removal 737 738 Removing the redundant setting of format = 32 in the XA_ATOM case. 739 It was already set to that earlier whe it was assigned actual_format. 740 741 xrandr.c:2770:3: warning: Value stored to 'format' is never read 742 format=0; 743 ^ ~ 744 xrandr.c:2782:7: warning: Value stored to 'format' is never read 745 format = actual_format; 746 ^ ~~~~~~~~~~~~~ 747 748 Found-by: clang static analyzer 749 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 750 751commit dd2a2e7dc918c57aae3df57118042e4362377243 752Author: Jeremy Huddleston <jeremyhu@apple.com> 753Date: Sun May 8 16:29:51 2011 -0700 754 755 Mark usage, fatal, and panic as _X_NORETURN 756 757 xrandr.c:634:13: warning: Access to field 'next' results in a dereference of a null pointer (loaded from variable 'output') 758 output->next = NULL; 759 ~~~~~~ ^ 760 xrandr.c:1214:6: warning: Access to field 'mode' results in a dereference of a null pointer (loaded from variable 'crtc_info') 761 if (crtc_info->mode == None) 762 ^~~~~~~~~ 763 xrandr.c:1252:5: warning: Array access (via field 'outputs') results in a null pointer dereference 764 crtc->outputs[crtc->noutput++] = output; 765 ^ ~~~~~~~ 766 xrandr.c:1638:33: warning: Access to field 'name' results in a dereference of a null pointer (loaded from variable 'output_info') 767 set_name_string (&output_name, output_info->name); 768 ^~~~~~~~~~~ 769 xrandr.c:1725:10: warning: Access to field 'changes' results in a dereference of a null pointer (loaded from variable 'output') 770 if (output->changes) 771 ^~~~~~ 772 xrandr.c:1848:10: warning: Access to field 'mode_info' results in a dereference of a null pointer (loaded from variable 'relation') 773 if (relation->mode_info == NULL) 774 ^~~~~~~~ 775 xrandr.c:3194:11: warning: Array access (from variable 'mode_shown') results in a null pointer dereference 776 if (mode_shown[j]) continue; 777 ^~~~~~~~~~ 778 779 Found-by: clang static analyzer 780 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 781 782commit d58d70f6781308de2f905b71a0bfcea1506b0008 783Author: Gaetan Nadon <memsize@videotron.ca> 784Date: Wed Jan 19 10:06:56 2011 -0500 785 786 config: move man pages into their own directory 787 788 Use services provided by XORG_MANPAGE_SECTIONS. 789 Use standard Makefile for man pages. 790 791 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 792 793commit 3b18de7f030b89bcbaa54686490c406f73f824d0 794Author: Gaetan Nadon <memsize@videotron.ca> 795Date: Thu Jan 13 17:15:36 2011 -0500 796 797 man: replace hard coded man page section with substitution strings 798 799 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 800 801commit 7c3b0664e6ee3c3e43724c3922257e1138accd7c 802Author: Gaetan Nadon <memsize@videotron.ca> 803Date: Thu Jan 13 11:15:48 2011 -0500 804 805 man: remove trailing spaces and tabs 806 807 Using s/[ \t]*$// 808 809 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 810 811commit b94179dd0538c73ff4628d43f4b8f492351ddd9c 812Author: Gaetan Nadon <memsize@videotron.ca> 813Date: Wed Jan 12 16:28:02 2011 -0500 814 815 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 816 817 This silences an Autoconf warning 818 819commit 275249f6d162c8ce8a080bef8a2955fd8e72b67c 820Author: Matthias Hopf <mhopf@suse.de> 821Date: Mon Jan 10 17:56:16 2011 +0100 822 823 Add --current to usage. 824 825commit 2b67c3d80d1e7736cf4fe9f093ab604dc02ad7be 826Author: Alan Coopersmith <alan.coopersmith@oracle.com> 827Date: Sat Oct 30 11:28:41 2010 -0700 828 829 xrandr 1.3.4 830 831 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 832 833commit 46c3cb9103ecd6f73a2908bb93004658069639c5 834Author: Alan Coopersmith <alan.coopersmith@oracle.com> 835Date: Sat Oct 30 11:26:40 2010 -0700 836 837 config: Remove unnecessary calls from configure.ac 838 839 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 840 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 841 842 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 843 844commit 52016812038732a3aabc6dfb63ded9d07de703ee 845Author: Alan Coopersmith <alan.coopersmith@oracle.com> 846Date: Sat Oct 30 11:25:53 2010 -0700 847 848 config: upgrade to util-macros 1.8 for additional man page support 849 850 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 851 The value of MAN_SUBST is the same for all X.Org packages. 852 853 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 854 The existing statement can now be removed from the configuration file. 855 856 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 857 Enables silent rule and use platform appropriate version of sed. 858 859 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 860 861commit 5b74ff83949432b8abb9453415426a515e45eb20 862Author: Gaetan Nadon <memsize@videotron.ca> 863Date: Sat Oct 30 11:24:14 2010 -0700 864 865 config: update AC_PREREQ statement to 2.60 866 867 Unrelated to the previous patches, the new value simply reflects 868 the reality that the minimum level for autoconf to configure 869 all x.org modules is 2.60 dated June 2006. 870 871 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 872 873 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 874 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 875 876commit c7b90939f0ffcad17a5cc6cf1e28f7b027feeba5 877Author: Julien Cristau <jcristau@debian.org> 878Date: Tue Oct 12 21:20:18 2010 +0200 879 880 Call QueryExtension before any other RandR function (bug#30806) 881 882 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 883 Tested-by: Alan Coopersmith <alan.coopersmith@oracle.com> 884 Signed-off-by: Julien Cristau <jcristau@debian.org> 885 886commit 051f912f1c009a2c318214e6b3e86fa5f576d0ff 887Author: Alan Coopersmith <alan.coopersmith@oracle.com> 888Date: Wed Sep 22 19:39:27 2010 -0700 889 890 Bug 29348 - dot clock parameter missing from --newmode in man page 891 892 https://bugs.freedesktop.org/show_bug.cgi?id=29348 893 894 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 895 Reviewed-by: Julien Cristau <jcristau@debian.org> 896 897commit a06506ca5df0a69e0ca27845855187ff62b78a9d 898Author: Julien Cristau <jcristau@debian.org> 899Date: Mon Jul 19 18:07:56 2010 +0100 900 901 Bump to 1.3.3 902 903commit 2cc54b2f6280cc2e5519b572f960ecef36d750ac 904Author: Julien Cristau <jcristau@debian.org> 905Date: Mon Jul 19 18:06:56 2010 +0100 906 907 Require xorg-macros 1.4 for XORG_INSTALL 908 909commit 7e6b0adcbd6c9e691b538f99536dcd7106ed1f6a 910Author: Julien Cristau <jcristau@debian.org> 911Date: Mon Jul 19 18:05:37 2010 +0100 912 913 Kill cvs keyword 914 915commit 61fc9cc04e1ac179ac5e2cc4ff861bb362f0b801 916Author: Eric Piel <eric@triangle.(none)> 917Date: Sun Jan 10 00:08:53 2010 +0100 918 919 xrandr: get gamma and brightness 920 921 Even in verbose query mode, gamma and brigthness were not displayed. 922 That's because they are not stored in the server the same way they are 923 specified on the command line: they are stored as 256 * 3 u16 while 924 the command line is 3 + 1 floats. Still, this is useful info for the 925 users, and they don't care about how it's stored in the server. 926 927 So we do a regression over the values stored to recover info in the same 928 way as on the command line: gamma and brightness. 929 930 Signed-off-by: Éric Piel <eric.piel@tremplin-utc.net> 931 Reviewed-By: Matthias Hopf <mhopf@suse.de> 932 933commit b5627bb72b3ca2c7f5a702b7134a5c6dd4f83687 934Author: Eric Piel <eric@triangle.(none)> 935Date: Sun Jan 10 00:08:53 2010 +0100 936 937 xrandr: fix maximum gamma set 938 939 Gamma is an array of 3 16-bit values. Currently, the maximum value assigned is 940 255*256, which is only 65280. Make sure that when we set the gamma, the maximum 941 value is 65535. It's slightly brighter but also helps to avoid kludges to 942 detect clamped values when reading back the gamma. 943 944 Signed-off-by: Éric Piel <eric.piel@tremplin-utc.net> 945 Reviewed-by: Matthias Hopf <mhopf@suse.de> 946 947commit d138c73276226ce424d36e80ce745aa9461f110e 948Author: Gaetan Nadon <memsize@videotron.ca> 949Date: Thu Feb 11 10:08:07 2010 -0500 950 951 config: move CWARNFLAGS from configure.ac to Makefile.am 952 953 Compiler warning flags should be explicitly set in the makefile 954 rather than being merged with other packages compiler flags. 955 956 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 957 958commit ac6606d8da914610446c5327813798bfbba4d6c2 959Author: Éric Piel <eric.piel@tremplin-utc.net> 960Date: Wed Jan 6 14:42:15 2010 +0100 961 962 xrandr: fix brightness to prevent gamma to overflow and to allow 0 963 964 With the new brightness option, gamma would overflow with values > 1, 965 leading to rainbow looking screen. 966 967 In addition, have the brightness by default to 1, so that specifying 0 968 actually does the expected behaviour of leading to a black screen. 969 970 Signed-off-by: Éric Piel <eric.piel@tremplin-utc.net> 971 Reviewed-by: Matthias Hopf <mhopf@suse.de> 972 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 973 974commit ccb3f8a42b25819cd1812f179544b52c2f03d1aa 975Author: Yann Droneaud <ydroneaud@mandriva.com> 976Date: Tue Nov 17 15:39:02 2009 +0100 977 978 xrandr: Remove --clone / --extend support code 979 980 Code handling --clone and --extend is not used. 981 The usage message regarding those options was already commented out. 982 983 Signed-off-by: Yann Droneaud <ydroneaud@mandriva.com> 984 Acked-by: Matthias Hopf <mhopf@suse.de> 985 986commit 1f8e27cd71560c154f6b1f7472ae2518f5df10e0 987Author: Matthias Hopf <mhopf@suse.de> 988Date: Tue Jan 5 14:58:42 2010 +0100 989 990 Language fixes. 991 992commit 5f7d052d63875f059f5693c68ee9fdf559ad5300 993Author: Yann Droneaud <ydroneaud@mandriva.com> 994Date: Tue Nov 17 15:39:01 2009 +0100 995 996 xrandr: Use a prefix for enum type _policy and _relation like other enums in xrandr.c 997 998 Try to apply the same coding style to enum _policy and enum _relation. 999 1000 This patch also workarounds bug #12958 . 1001 1002 Signed-off-by: Yann Droneaud <ydroneaud@mandriva.com> 1003 Acked-by: Matthias Hopf <mhopf@suse.de> 1004 1005commit b481bd0df87c6b474d8c443b6590bbafac482485 1006Author: Mikhail Gusarov <dottedmag@dottedmag.net> 1007Date: Sun Oct 25 03:41:05 2009 +0600 1008 1009 Add --brightness for CRTC 1010 1011 --brightness n.m adjusts gamma set for CRTC in order to compensate 1012 for overly bright or overly dark unmanageable outputs. 1013 1014 Signed-off-by: Matthias Hopf <mhopf@suse.de> 1015 1016commit 7d463218c584b683c9946cbff44bc69115eaa11b 1017Author: Matthias Hopf <mhopf@suse.de> 1018Date: Sun Jan 3 00:40:19 2010 +0100 1019 1020 xrandr: add more information about the transform option in the manpage 1021 1022 Add information about the transformation, stating it's a homogeneous 1023 coordinate transformation and adding the (simplified) pixel calculation 1024 formula. Also and an example of keystone shaping generated using the algorithm 1025 found in xkeystone. 1026 1027 Based on a patch by Eric Piel <eric.piel@tremplin-utc.net> 1028 1029 Signed-off-by: Matthias Hopf <mhopf@suse.de> 1030 1031commit 27f86db064a5ea60b942fd3d3ddeb462d980df9b 1032Author: Dominik Jasiok <yahoo.com.pl@gmail.com> 1033Date: Tue Dec 22 10:48:04 2009 -0800 1034 1035 xrandr: check_strtod should return double, not int 1036 1037 check_strtod performs error checking around strtod to ensure that 1038 arguments are correctly processed. However, it also accidentally(?) 1039 cast the result to int, which was then universally cast back to double 1040 by all callers. Narrowing and re-widening the type doesn't make any sense. 1041 1042 Signed-off-by: Keith Packard <keithp@keithp.com> 1043 1044commit df254d851cae1dcd1032e307bc828a5800e7342c 1045Author: Gaetan Nadon <memsize@videotron.ca> 1046Date: Thu Nov 26 09:19:54 2009 -0500 1047 1048 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 1049 1050 Now that the INSTALL file is generated. 1051 Allows running make maintainer-clean. 1052 1053commit 22c90544537e661b71705c59e35616abb5aa4e55 1054Author: Gaetan Nadon <memsize@videotron.ca> 1055Date: Wed Oct 28 14:09:08 2009 -0400 1056 1057 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 1058 1059 Add missing INSTALL file. Use standard GNU file on building tarball 1060 README may have been updated 1061 Remove AUTHORS file as it is empty and no content available yet. 1062 Remove NEWS file as it is empty and no content available yet. 1063 1064commit 35ffd6a8768e16d6fc7bc7c840e35a7802796b21 1065Author: Gaetan Nadon <memsize@videotron.ca> 1066Date: Tue Oct 27 15:07:25 2009 -0400 1067 1068 Deploy the new XORG_DEFAULT_OPTIONS #24242 1069 1070 This macro aggregate a number of existing macros that sets commmon 1071 X.Org components configuration options. It shields the configuration file from 1072 future changes. 1073 1074commit a397f434db4f30e22534b8fe684b8f67f493db40 1075Author: Gaetan Nadon <memsize@videotron.ca> 1076Date: Mon Oct 26 22:08:39 2009 -0400 1077 1078 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 1079 1080 ChangeLog filename is known to Automake and requires no further 1081 coding in the makefile. 1082 1083commit 436a873b54990b77ac8024e20284de53c58c7850 1084Author: Gaetan Nadon <memsize@videotron.ca> 1085Date: Thu Oct 22 12:34:16 2009 -0400 1086 1087 .gitignore: use common defaults with custom section # 24239 1088 1089 Using common defaults will reduce errors and maintenance. 1090 Only the very small or inexistent custom section need periodic maintenance 1091 when the structure of the component changes. Do not edit defaults. 1092 1093commit b81a4976701606d1406ff56b91f13331e5f35860 1094Author: Yann Droneaud <ydroneaud@mandriva.com> 1095Date: Tue Nov 17 10:34:41 2009 +0100 1096 1097 xrandr: Remove test against RANDR_MAJOR/RANDR_MINOR 1098 1099 xrandr.c uses structures defined in <X11/extensions/Xrandr.h> 1100 provided by 'libXrandr' package but tests structures availability 1101 through RANDR_MAJOR/RANDR_MINOR defined in <X11/extensions/randr.h> 1102 provided by 'randrproto' package. 1103 1104 Sometimes they are not in sync so it's safer to rely on checks made 1105 by configure script through pkg-config. 1106 1107 In my test case, XRRPanning structure is not defined in Xrandr.h, 1108 RANDR_MAJOR is 1 and RANDR_MINOR 2 but xrandr.c try to use it anyway. 1109 (for the record, XRRPanning was added in libXrandr-1.2.91). 1110 1111 Signed-off-by: Yann Droneaud <ydroneaud@mandriva.com> 1112 Reviewed-by: Rémi Cardona <remi@gentoo.org> 1113 1114commit b84560759141ed52b8779c184184f888e9be8b2f 1115Author: Éric Piel <eric.piel@tremplin-utc.net> 1116Date: Mon Oct 26 14:11:02 2009 +0100 1117 1118 xrandr: do not segfault when "--scale" or "--transform" have no output 1119 1120 "xrandr --scale 2x2" segfaults, because the --scale (and --transform) 1121 options do not check for an existing output. 1122 1123 Make sure there is an output specified (like every other options). 1124 1125 Signed-off-by: Éric Piel <eric.piel@tremplin-utc.net> 1126 Signed-off-by: Matthias Hopf <mhopf@suse.de> 1127 1128commit 34829957441a10f6b6e31141aa1018f7a72aeaf9 1129Author: Éric Piel <eric.piel@tremplin-utc.net> 1130Date: Mon Oct 26 13:57:10 2009 +0100 1131 1132 xrandr: make --query really the default option 1133 1134 The manpage states that "--query" is the default action when nothing 1135 specific is requested. However, some options such as "-display" or 1136 "--screen" lead to do nothing by default. This makes sure that unless 1137 something specific is requested, query is done. 1138 1139 This also restores the behaviour of --q1 to the same one as the old 1140 xrandr: also display the info on rotation and reflection by default. 1141 1142 Signed-off-by: Éric Piel <eric.piel@tremplin-utc.net> 1143 Signed-off-by: Matthias Hopf <mhopf@suse.de> 1144 1145commit 07bf47f32b1f4c256e32b5b47ab52ef55605370a 1146Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 1147Date: Wed Oct 21 12:47:21 2009 -0700 1148 1149 This is not a GNU project, so declare it foreign. 1150 1151 On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: 1152 > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: 1153 > > I noticed an INSTALL file in xlsclients and libXvMC today, and it 1154 > > was quite annoying to work around since 'autoreconf -fvi' replaces 1155 > > it and git wants to commit it. Should these files even be in git? 1156 > > Can I nuke them for the betterment of humanity and since they get 1157 > > created by autoreconf anyways? 1158 > 1159 > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 1160 1161 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with 1162 AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation 1163 of the INSTALL file. It is also part of the 24206 solution. 1164 1165 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 1166 1167commit 8d2702cae3b6a78cfd8d480dfb8209091917af2a 1168Author: Alan Coopersmith <alan.coopersmith@sun.com> 1169Date: Thu Oct 1 14:54:29 2009 -0700 1170 1171 Add README with pointers to mailing lists, bugzilla, & git 1172 1173 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1174 1175commit 5da0cb3533aa829588b2e6d715d511691fa1e45f 1176Author: Matthias Hopf <mhopf@suse.de> 1177Date: Thu Sep 10 13:18:35 2009 +0200 1178 1179 Bump to 1.3.2 1180 1181commit e5861530a6c3bb6219217e5f3ddc71f13b9509c4 1182Author: Matthias Hopf <mhopf@suse.de> 1183Date: Thu Sep 10 13:17:56 2009 +0200 1184 1185 Add missing 'static's to get rid of warnings. 1186 1187commit ab875be43651befa654a24719f1ea365dde09073 1188Author: Bart Massey <bart@cs.pdx.edu> 1189Date: Thu Feb 7 14:03:24 2008 -0800 1190 1191 changed a bunch of string to number conversions for reliability 1192 1193commit 25325aae2e80cb33af17682a6cd1bcd292a5f445 1194Author: Bart Massey <bart@cs.pdx.edu> 1195Date: Fri Sep 4 15:36:51 2009 +0200 1196 1197 Warn if one of the outputs given did not exist 1198 1199commit 713a8ea5646f7c893b52afeb3c2443b21b837e46 1200Author: Matthias Hopf <mhopf@suse.de> 1201Date: Tue Aug 11 16:11:39 2009 +0200 1202 1203 Bump to 1.3.1 1204 1205 Also finally bump xrandr requirement to 1.3 1206 1207commit b9166441bdb08ef76b9c6712da5902b0dcbf03f3 1208Author: Federico Mena Quintero <federico@novell.com> 1209Date: Mon Jul 20 16:44:52 2009 -0500 1210 1211 bfo#22864 - grab the server around all modifications to CRTCs 1212 1213 We were not grabbed while disabling the CRTCs that should be off, so other clients could think 1214 that there was an intermediate stage with no enabled outputs. 1215 1216 Signed-off-by: Federico Mena Quintero <federico@novell.com> 1217 1218commit 68d5134142e3c616f3996c7ea8d08c887ce56118 1219Author: Éric Piel <E.A.B.Piel@tudelft.nl> 1220Date: Tue Jul 14 21:36:32 2009 +0200 1221 1222 xrandr: Document --nograb option 1223 1224 Op 08-07-09 15:19, Matthias Hopf schreef: 1225 > On Jul 07, 09 22:02:51 +0200, Éric Piel wrote: 1226 >> Op 21-05-09 13:23, Éric Piel schreef: 1227 >>> This documents the --nograb option with whichever I could understand of 1228 >>> the advantages and drawbacks of grabbing the screen. 1229 >>> 1230 >>> Also fixes the formatting in the xrandr 1.3 options. 1231 >> Please review and apply. 1232 > 1233 > Please resend as attachment. 1234 > 1235 Please find attached the git patch. 1236 1237 Thanks, 1238 Eric 1239 1240 >From 34e7c1036ba0e0d7827563deaffea9371031fa0b Mon Sep 17 00:00:00 2001 1241 From: Eric Piel <eric.piel@tremplin-utc.net> 1242 Date: Thu, 21 May 2009 13:01:52 +0200 1243 Subject: [PATCH] xrandr: Document --nograb option 1244 1245 This documents the --nograb option with whichever I could understand of 1246 the advantages and drawback of grabbing the screen. 1247 1248 Also fixes the formatting in the xrandr 1.3 options 1249 1250commit 73e38a31e5b7c68f8f3227a47d98ec55097999c7 1251Author: Matthias Hopf <mhopf@suse.de> 1252Date: Mon Jul 6 18:30:05 2009 +0200 1253 1254 Fix missing prototype warning. 1255 1256commit 3408ca77af6a45b15b89bdd1ce9d5aac9646f6b8 1257Author: Matthias Hopf <mhopf@suse.de> 1258Date: Mon Jul 6 18:28:23 2009 +0200 1259 1260 Report program version as well with --version. 1261 1262 This has bitten us too often already (the infamous uncloning bug). 1263 1264commit 47502f66f7c51ad575d63f28de49f285c4de7062 1265Author: Adam Jackson <ajax@redhat.com> 1266Date: Wed Apr 1 11:03:10 2009 -0400 1267 1268 xrandr 1.3.0 1269 1270commit beb228842c77fab4a446e028dd501a01f0fb3fd3 1271Author: Adam Jackson <ajax@redhat.com> 1272Date: Tue Feb 17 13:45:32 2009 -0500 1273 1274 Allow zero replies from GetPanning to mean panning is unavailable. 1275 1276commit 9418f5523bd923b122f6e67c33c40e0e9c29ab50 1277Author: Aaron Plattner <aplattner@nvidia.com> 1278Date: Wed Mar 4 15:49:10 2009 -0800 1279 1280 Set the screen config on the correct screen. 1281 1282 Otherwise, "DISPLAY=:0.0 xrandr --screen 1 -s 1" fails. 1283 1284commit 39a16783a3d1c0c722b4b18fab60a91b9f6ed578 1285Author: Matthias Hopf <mhopf@suse.de> 1286Date: Fri Mar 6 14:49:43 2009 +0100 1287 1288 Revert "Move outputs among crtcs as necessary. Fixes 14570" 1289 1290 This reverts commit 4dcc8ae1a6903434def1a2706f7c68ff9e2a17c4. 1291 The commit broke uncloning completely again. 1292 1293 Conflicts: 1294 1295 xrandr.c 1296 1297commit 880f045202d1e70368b855c3783604e19be946b8 1298Author: Julien Cristau <jcristau@debian.org> 1299Date: Sun Feb 1 14:39:30 2009 +0100 1300 1301 Bump to 1.2.99.4 1302 1303commit 010dfc4bdd309256aecd006bb2b5b6937c2a119c 1304Author: Julien Cristau <jcristau@debian.org> 1305Date: Sun Feb 1 14:34:15 2009 +0100 1306 1307 Document the --primary and --noprimary options 1308 1309commit 48014498d275a9aab986b4bf295538a5b38ddfeb 1310Author: Julien Cristau <jcristau@debian.org> 1311Date: Sun Feb 1 14:12:21 2009 +0100 1312 1313 Document the --current option 1314 1315commit 909defc8a2b009ab845d875ba10e1ca01fb9d648 1316Author: Keith Packard <keithp@keithp.com> 1317Date: Fri Jan 30 20:37:34 2009 -0800 1318 1319 Add --noprimary option 1320 1321commit 6c70e0ee693ea293e8674d049249b462f3d36855 1322Author: Keith Packard <keithp@keithp.com> 1323Date: Fri Jan 30 20:11:10 2009 -0800 1324 1325 Add --primary option 1326 1327 Signed-off-by: Keith Packard <keithp@keithp.com> 1328 1329commit 77891e7900765a320ad3d43b56bbb1f3081b6582 1330Author: Keith Packard <keithp@keithp.com> 1331Date: Fri Jan 30 20:11:02 2009 -0800 1332 1333 Add --nograb option 1334 1335 Signed-off-by: Keith Packard <keithp@keithp.com> 1336 1337commit 6f3e2bb207cff069791811ef2bbe7798759ed810 1338Author: Keith Packard <keithp@keithp.com> 1339Date: Tue Dec 9 21:26:50 2008 -0800 1340 1341 Add --current option to use new XRRGetScreenResourcesCurrent API 1342 1343 Signed-off-by: Keith Packard <keithp@keithp.com> 1344 1345commit d98d1f4055d8fbae1dc8d8c54467bfef21010694 1346Author: Matthias Hopf <mhopf@suse.de> 1347Date: Fri Jan 30 17:46:05 2009 +0100 1348 1349 Several fatal() were missing \n. 1350 1351commit 9ea6e4210d49c13991a7d07e54f6f59e3dc8ce72 1352Author: Éric Piel <E.A.B.Piel@tudelft.nl> 1353Date: Mon Jan 19 16:18:46 2009 +0100 1354 1355 Add docs for --transform and --scale. 1356 1357 The new --transform and --scale options were added, but not yet 1358 documented. This includes also an example of usage of panning and 1359 scaling at the same time. 1360 1361commit 4d381d6a88fe147f8b6eabd765a2f42c6402d8c6 1362Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 1363Date: Mon Jan 26 16:40:59 2009 -0200 1364 1365 Correct make distcheck and gcc/sparse warnings. 1366 1367commit 7509ecb290689e0b1d5e1000c9fbd312f1efb4ca 1368Author: Maarten Maathuis <madman2003@gmail.com> 1369Date: Mon Jan 5 19:47:21 2009 +0100 1370 1371 Stay away from doublescan modes unless a refresh rate is specified. 1372 1373commit f77ad847c0d3f8f0c6e8ffbf0bec39e5e9c5ded0 1374Author: Maarten Maathuis <madman2003@gmail.com> 1375Date: Mon Dec 22 19:46:24 2008 +0100 1376 1377 Fix gamma computation. 1378 1379 - The previous version sometimes overflowed. 1380 1381commit 5ddde7151841a8db99a2f38689a176114b2a45e5 1382Author: Matthias Hopf <mhopf@suse.de> 1383Date: Thu Dec 18 16:09:39 2008 +0100 1384 1385 Print multiple Atom and INT32 properties. 1386 1387 Improve output formating of strings. 1388 1389commit 96af64f0de71f4149740b486baaefca744bb1bc1 1390Author: Maarten Maathuis <madman2003@gmail.com> 1391Date: Wed Dec 17 17:18:14 2008 +0100 1392 1393 randr-1.2: support gamma changes. 1394 1395commit 9b7a2a3d4ac7891bd5372a581e6a55a1c81497ef 1396Author: Matthias Hopf <mhopf@suse.de> 1397Date: Mon Dec 15 20:39:43 2008 +0100 1398 1399 Bump to 1.2.99.3 1400 1401commit e80add8a407a9327bda209ff11a97dc3336e0cab 1402Author: Matthias Hopf <mhopf@suse.de> 1403Date: Mon Dec 15 21:00:55 2008 +0100 1404 1405 Add keystone.5c to EXTRA_DIST 1406 1407commit c98591b0bf4753c4c075eccde6023ef644f8bf96 1408Author: Matthias Hopf <mhopf@suse.de> 1409Date: Mon Dec 15 20:36:40 2008 +0100 1410 1411 Don't trash panning area, except if --panning or --fb is given. 1412 1413 Almost anything used to reduce the screen size to the current mode size, which 1414 is counter-productive when panning is active. 1415 1416commit 8cb63b6df9e46e8b06a57cb54ad460355b604399 1417Author: Matthias Hopf <mhopf@suse.de> 1418Date: Thu Dec 11 17:09:47 2008 +0100 1419 1420 Panning tracking areas describe full screen if set to 0. Use it as default. 1421 1422 Also improve reduced output on default tracking and borders. 1423 1424commit b5efbb31ec7c27895507add4497dbfc87f930bb3 1425Author: Adam Jackson <ajax@redhat.com> 1426Date: Mon Dec 8 16:37:59 2008 -0500 1427 1428 Accept --props synonym for --prop 1429 1430commit 57cabac91099a8abd5afad75de64e54930c078ec 1431Author: Matthias Hopf <mhopf@suse.de> 1432Date: Mon Dec 8 12:24:37 2008 +0100 1433 1434 Only set transforms if actually changed. 1435 1436 Re-enables other crtc settings if transforms are not supported. 1437 1438commit 970f689651fc86fa7a2ba24f0fab5f86f01af349 1439Author: Matthias Hopf <mhopf@suse.de> 1440Date: Thu Dec 4 17:47:05 2008 +0100 1441 1442 Add manpage entry. 1443 1444commit d030ae78e8516b916e9ea1ea81e3b4859bf35875 1445Author: Matthias Hopf <mhopf@suse.de> 1446Date: Thu Dec 4 15:57:22 2008 +0100 1447 1448 Bump to 1.2.99.2, RandR requirements to 1.2.99.2 1449 1450commit f6b5862f87ba7e1729c46136ef7754a06301853f 1451Author: Matthias Hopf <mhopf@suse.de> 1452Date: Fri Nov 28 17:16:11 2008 +0100 1453 1454 Add panning support. 1455 1456commit 1dc67ca918446cb7db4819f60f36e7bc6f4c047b 1457Author: Matthieu Herrb <matthieu.herrb@laas.fr> 1458Date: Sat Dec 6 11:40:53 2008 +0100 1459 1460 Don't use GNU make only constructs. 1461 1462commit 7963d4217c12d2e4b0c38ad4ff185462784609f7 1463Author: Julien Cristau <jcristau@debian.org> 1464Date: Mon Dec 1 23:27:51 2008 +0100 1465 1466 Require libXrandr 1.2.91 1467 1468commit ba78e14c8c43a141fc5227e7bb75d6cfd0f70dba 1469Author: Julien Cristau <jcristau@debian.org> 1470Date: Mon Dec 1 21:45:47 2008 +0100 1471 1472 Fix build outside of the source dir 1473 1474commit 63ba316bcbe8ad61ba63d9fe62c82e7d56dcc399 1475Merge: a813c4da7f0b 1b95e32b4b0a 1476Author: Julien Cristau <jcristau@debian.org> 1477Date: Mon Dec 1 21:33:35 2008 +0100 1478 1479 Merge branch 'transform-proposal' of git.freedesktop.org:/git/xorg/app/xrandr 1480 1481commit 1b95e32b4b0a4a114e0fbebe8a18316d2f9010cf 1482Author: Keith Packard <keithp@keithp.com> 1483Date: Fri Nov 14 14:14:24 2008 -0800 1484 1485 Add --scale and --transform to --help output 1486 1487commit e9a5d1c598cd0440f062240430a9b86b4d514ada 1488Author: Keith Packard <keithp@keithp.com> 1489Date: Fri Nov 14 14:13:51 2008 -0800 1490 1491 Check return value from XRRGetCrtcTransform 1492 1493 XRRGetCrtcTransform will return 0 if the X server does not support this 1494 request. 1495 1496commit a813c4da7f0b166ee9001fa97c5d8d64e5b5b560 1497Author: Alan Coopersmith <alan.coopersmith@sun.com> 1498Date: Tue Aug 19 09:39:00 2008 -0700 1499 1500 Man page typo fix 1501 1502commit 8ef4595aef15b7326822849a50c273f2a2b4ba30 1503Author: Julien Cristau <jcristau@debian.org> 1504Date: Fri Aug 15 21:23:13 2008 +0200 1505 1506 Manpage typo fixes 1507 1508commit 977275a13be0687efc3db1fd3763174ff1256210 1509Author: Eric Piel <E.A.B.Piel@tudelft.nl> 1510Date: Sun Aug 10 23:28:25 2008 +0200 1511 1512 update the manpage 1513 1514 Describe all the options supported, including: --dryrun, -display, 1515 --q1, --q12, and --rate for 1.1 1516 Describe all short and long version of the option. 1517 Use the usual man style for the option arugments. 1518 Move the four --*mode options out of the output section as they are 1519 independant of an output. 1520 Mention cvt for computing modelines. 1521 Gives some examples. 1522 1523commit 3046799a06ecb79211ef0f4a2db9de4eec7233fb 1524Author: Egbert Eich <eich@freedesktop.org> 1525Date: Sun Aug 3 13:24:49 2008 +0200 1526 1527 Fix for 64bit: feed a pointer to the right size variable to scanf(). 1528 1529 XID is unsigned long, however %x in scanf takes a pointer to an unsigned int. 1530 Thus with XID xid, a sscanf(..., "0x%x", &xid) will most likely produce the 1531 wrong results. 1532 1533commit 0d2082e9eb25cb7410309eed908b7f95abb8da79 1534Author: Keith Packard <keithp@keithp.com> 1535Date: Tue Apr 1 23:46:02 2008 -0700 1536 1537 Exit when select output is not available 1538 1539commit 18a189993b3df8bc54a79e0d62240ef203d6f34f 1540Author: Keith Packard <keithp@keithp.com> 1541Date: Tue Apr 1 23:44:50 2008 -0700 1542 1543 Fix up xkeystone to use current screen/output settings 1544 1545commit 9e8860f9231926090462ea20132cc9e1d64e5fe4 1546Author: Keith Packard <keithp@keithp.com> 1547Date: Sun Mar 30 19:03:53 2008 -0700 1548 1549 Execute xrandr to set keystone correction 1550 1551commit 206bfbea4ebe854fdfa66e8a6fbd9296b6004c0e 1552Author: Keith Packard <keithp@keithp.com> 1553Date: Sun Mar 30 19:03:29 2008 -0700 1554 1555 add --transform none to reset to identity 1556 1557commit 443e1f80c885133ae6df590f1a7663833c76b7f3 1558Author: Keith Packard <keithp@keithp.com> 1559Date: Fri Mar 21 23:29:41 2008 -0700 1560 1561 Build and install xkeystone program from keystone.5c 1562 1563commit a7a7eea510b5a87c1e12516fadae4d13bd26e0a0 1564Author: Keith Packard <keithp@keithp.com> 1565Date: Fri Mar 21 23:26:30 2008 -0700 1566 1567 Track toolkit name change (chrome->nichrome) 1568 1569commit 74dae9d4b06369a1863e7a68b7b3772751e06ff1 1570Author: Keith Packard <keithp@keithp.com> 1571Date: Fri Mar 21 03:17:44 2008 -0700 1572 1573 Add keystone.5c program to help compute transforms. 1574 1575commit 46bd35dd9004c0f9f47dc44b77a8c28e3ab7ced1 1576Author: Keith Packard <keithp@keithp.com> 1577Date: Fri Mar 21 03:17:40 2008 -0700 1578 1579 Make screen undersize a warning instead of an error 1580 1581commit b816bf38b418618c2f1cb5ded09aa3b346f8eb15 1582Author: Keith Packard <keithp@keithp.com> 1583Date: Tue Mar 18 16:04:34 2008 -0700 1584 1585 Add --transform to pass arbitrary transforms to the server 1586 1587commit 3809884530223e32f7026ec987257cb91e2122a9 1588Author: Keith Packard <keithp@keithp.com> 1589Date: Tue Mar 18 16:04:22 2008 -0700 1590 1591 Eliminate inverse matrix from randr transform protocol 1592 1593 It is easier, and potentially more precise, to compute the inverse in the 1594 server where everything can eventually be kept in floating point form. 1595 1596commit 854a7c2916455fec5ec1ba87576e26706d151381 1597Author: Keith Packard <keithp@keithp.com> 1598Date: Mon Mar 17 13:59:40 2008 -0700 1599 1600 Transform mode bounds when computing sizes. 1601 1602 Ensure screen sizes are compared with projected mode image, including 1603 rotation and transformation. 1604 1605commit bed3da4feaa505a5b50a4c94b0e6661bdac1fcbd 1606Author: Keith Packard <keithp@keithp.com> 1607Date: Sat Mar 15 00:35:08 2008 -0700 1608 1609 Manage transform filters. Use bilinear for non-identity scale. 1610 1611 This involved creating a compound transform datatype to hold all of the 1612 relevant transform and filter information. Adding arbitrary transforms 1613 should be fairly easy at this point. 1614 1615commit ba35bb5d306f4edf9a47b92f249132a0814f5db1 1616Author: Keith Packard <keithp@keithp.com> 1617Date: Mon Mar 10 21:19:41 2008 -0700 1618 1619 Add output scaling using the 1.3 transform requests 1620 1621commit 4dcc8ae1a6903434def1a2706f7c68ff9e2a17c4 1622Author: Hong Liu <hong.liu@intel.com> 1623Date: Mon Mar 10 21:37:09 2008 -0700 1624 1625 Move outputs among crtcs as necessary. Fixes 14570 1626 1627 This patch makes new requests override existing crtc allocations. Outputs 1628 with restricted crtc usage can now force existing outputs to switch 1629 automatcially. 1630 1631commit 7465357396e2f32325791e27f28cbbe9753db3ab 1632Author: Adam Jackson <ajax@redhat.com> 1633Date: Fri Mar 7 16:38:28 2008 -0500 1634 1635 xrandr 1.2.3 1636 1637commit 4450756d2d1d86f3c0bfaef81f6265f795468f32 1638Author: Brice Goglin <bgoglin@debian.org> 1639Date: Sat Dec 15 00:59:00 2007 +0100 1640 1641 Clarify the ability to manipulate multiple outputs in the manpage 1642 1643commit 5c2a003adab4aaa979a095e18793b01cfa694bf4 1644Author: Brice Goglin <bgoglin@debian.org> 1645Date: Sat Dec 15 00:49:35 2007 +0100 1646 1647 Allow the same output to be specified several times on the command line 1648 1649 Without this 1650 xrandr --output FOO --mode 1024x768 --output FOO --rotate left 1651 only changed the mode but did not apply the rotation. 1652 1653 Reported by Marc Haber in 1654 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=455225 1655 1656commit ab5e07fdd10f6340289b786414804a034ca98f0b 1657Author: Matthias Hopf <mhopf@suse.de> 1658Date: Fri Nov 30 16:13:51 2007 +0100 1659 1660 Add another test known to fail. 1661 1662commit 4bc84c331f4f0f0658ad1f6c0107e3e6af2a7911 1663Author: Matthias Hopf <mhopf@suse.de> 1664Date: Thu Nov 29 19:54:34 2007 +0100 1665 1666 Add informational output for known issues. 1667 1668commit 3fb533ff896bd642200e7242c4d35a887faeca74 1669Author: Matthias Hopf <mhopf@suse.de> 1670Date: Thu Nov 29 19:54:03 2007 +0100 1671 1672 Add more tests, mostly regarding crtc switching and uncloning. 1673 1674commit 20c8a60950cb5b4ddef305dc9822bec1c33e938c 1675Author: Matthias Hopf <mhopf@suse.de> 1676Date: Wed Nov 21 16:48:23 2007 +0100 1677 1678 Oops. Fix missing space introduced by last commit. 1679 1680commit 3347c849462b737a873a279c24d17c873667c821 1681Author: Matthias Hopf <mhopf@suse.de> 1682Date: Wed Nov 21 16:47:08 2007 +0100 1683 1684 Be more robust in test case if mode database is borked. 1685 1686 If modes are reported multiple times per output only bother for the last. 1687 1688commit 81e8f2f5673befded3320424f4511e322d41c80b 1689Author: Matthias Hopf <mhopf@suse.de> 1690Date: Wed Nov 21 16:41:33 2007 +0100 1691 1692 Some minor issues in test case fixed. 1693 1694 'my' not being used correctly. 1695 Some lines of xrandr --verbose output missing in failure case. 1696 If order of outputs change in xrandr -q output they are sorted into original 1697 order now. 1698 1699commit 3a27185879e7a9288de960ccb26a48104cf592e3 1700Author: Matthias Hopf <mhopf@suse.de> 1701Date: Tue Nov 20 13:03:07 2007 +0100 1702 1703 More tests for ambiguous xrandr output. 1704 1705commit c9bd9721e162e4d9d83dd60400c75d4cc98090bd 1706Author: Matthias Hopf <mhopf@suse.de> 1707Date: Mon Nov 19 20:06:39 2007 +0100 1708 1709 Use IDs for mode selection instead of hand-crafted <w>x<h>@<r> strings. 1710 1711 Some machines provide e.g. multiple 1024x768@60 modes with /slightly/ 1712 different timings. Often only one of them can be used on multiple outputs. 1713 1714commit a05d2b6e3ffd81ecc0be98b8d2b758505fb55f3f 1715Author: Matthias Hopf <mhopf@suse.de> 1716Date: Mon Nov 19 12:24:04 2007 +0100 1717 1718 Improved test script. 1719 1720 Allow for outputs in "unknown" state. 1721 Check xrandr return value. 1722 Output full xrandr --verbose output if test failed. 1723 1724commit e15a527b6cf1e66709eae4547c8e8bd3402362fe 1725Author: Matthias Hopf <mhopf@suse.de> 1726Date: Mon Nov 12 15:25:44 2007 +0100 1727 1728 Add xrandr test suite. 1729 1730 At the moment it only tests setting one output at a time, it should be 1731 improved to add some multi-output setting as well. Also it only tests clone 1732 modes at the moment, no multi-monitor setups. 1733 1734commit f7aaf8947a0f216ffedc7040b0a1ef153b471425 1735Author: Matthias Hopf <mhopf@suse.de> 1736Date: Mon Nov 12 15:19:52 2007 +0100 1737 1738 Always reset other outputs using the best crtc. 1739 1740 pick_crtcs_score() didn't set up crtcs references correctly if anything but 1741 the last output resulted in the best score. 1742 1743commit 307f3686d3d517cb29b8e66d8ad2ff76a48748b7 1744Author: Matthias Hopf <mhopf@suse.de> 1745Date: Mon Nov 12 15:18:30 2007 +0100 1746 1747 Verify crtc against previous config. 1748 1749 When selecting a crtc for an output, it doesn't check for already attached 1750 outputs in check_crtc_for_output(), and so may select an crtc that is already 1751 in use. 1752 E.g. when changing from a cloned mode the displays won't be split up to 1753 different crtcs, but the same crtc will be used, changing the resolution for 1754 the unspecified display as well. 1755 1756commit 4834439ce62e41204367cf5356a7a1719870791f 1757Author: Matthias Hopf <mhopf@suse.de> 1758Date: Thu Oct 11 16:54:40 2007 +0200 1759 1760 Build ChangeLog from git-log automatically. 1761 1762commit 2fa28afb035cf2d2efb077db58d3858c57189be4 1763Author: Adam Jackson <ajax@benzedrine.nwnk.net> 1764Date: Tue Oct 2 11:06:18 2007 -0400 1765 1766 Death to ChangeLog 1767 1768commit 0cfaad401711092f8858cdec64e4d4f33023f398 1769Author: Adam Jackson <ajax@benzedrine.nwnk.net> 1770Date: Tue Oct 2 11:06:02 2007 -0400 1771 1772 Update COPYING 1773 1774commit 06d7272d845033fe3c6f0625cce5a32e7be636a7 1775Author: Brice Goglin <bgoglin@debian.org> 1776Date: Thu Aug 9 19:06:37 2007 +0200 1777 1778 When invoked with no option, xrandr dumps existing modes 1779 1780commit b9b2fbbf7a7dd156d1fdffac2e4a4046f58baabb 1781Author: Brice Goglin <bgoglin@debian.org> 1782Date: Thu Aug 9 19:04:58 2007 +0200 1783 1784 Add *current and +preferred to the --verbose output 1785 1786commit 200491c1fad5ea1a733dfbac799a2ebea0a2f23c 1787Author: Keith Packard <keithp@neko.keithp.com> 1788Date: Wed Jul 4 20:05:03 2007 -0700 1789 1790 Bump to 1.2.2 1791 1792commit 9db36331a2acafbf2dab05f481ce16ab094fde52 1793Author: Keith Packard <keithp@neko.keithp.com> 1794Date: Wed Jul 4 20:04:29 2007 -0700 1795 1796 Print out mode flags in --verbose mode 1797 1798commit 49058de9b743f5196f97fb13cd9a695087b1299c 1799Author: Keith Packard <keithp@neko.keithp.com> 1800Date: Wed Jul 4 19:41:32 2007 -0700 1801 1802 Mark 1.1 options as inconsistent with 1.2 options 1803 1804commit c58e79a9c4c3967fb31a49a610a37b5797426415 1805Author: Keith Packard <keithp@neko.keithp.com> 1806Date: Thu Jun 21 15:57:37 2007 +0100 1807 1808 Document 1.2.1 options 1809 1810commit 0499ce5ed6378bc68cbf8eafc9932ddf495ae708 1811Author: Keith Packard <keithp@dulcimer.keithp.com> 1812Date: Sat Jun 30 14:00:30 2007 -0700 1813 1814 When simple CRTC allocation fails, search all available configs. 1815 1816 When enabling an output, if there isn't an idle CRTC available, try to 1817 reconfigure existing outputs to make things work. 1818 1819commit 0f2014e67193eb0f8e12ab1c3d5cae8991ba439d 1820Author: Keith Packard <keithp@dulcimer.keithp.com> 1821Date: Sat Jun 30 13:09:45 2007 -0700 1822 1823 Clean up code structure a bit 1824 1825commit 63d385f2c24c522d974652da138a83d78014713e 1826Author: Alan Coopersmith <alan.coopersmith@sun.com> 1827Date: Thu Jun 21 09:35:53 2007 -0700 1828 1829 Add *~ to .gitignore to skip emacs & patch droppings 1830 1831commit 4bd2f4004a6f75a7e4cb32b9e320e680f8839748 1832Author: Alan Coopersmith <alan.coopersmith@sun.com> 1833Date: Thu Jun 21 09:34:53 2007 -0700 1834 1835 Man page formatting and typo fixes 1836 1837commit b0812f8efe448c85979a9f5fab4a5a4e0c0e78d0 1838Author: Keith Packard <keithp@neko.keithp.com> 1839Date: Thu Jun 21 11:37:56 2007 +0100 1840 1841 Update to version 1.2.1 1842 1843commit 739f01957c8ebd3b7bcecfd7ad8174884561f7db 1844Author: Aaron Plattner <aplattner@nvidia.com> 1845Date: Wed Apr 25 11:59:48 2007 -0700 1846 1847 Fix bugs found by compiling with -Wall. 1848 1849 Also fix some unused variable warnings. 1850 1851commit 8e43df335679c71930465e4c58c0bd14d9add29a 1852Author: Aaron Plattner <aplattner@nvidia.com> 1853Date: Wed Apr 25 10:52:19 2007 -0700 1854 1855 Fix a typo. Make mode flags case insensitive. Improve error messages. 1856 1857commit 49aab1e0e4cb2226d5bcc8e4e6217309fd23ce52 1858Author: Keith Packard <keithp@neko.keithp.com> 1859Date: Fri Apr 6 03:36:27 2007 -0700 1860 1861 Skip relative positions for outputs without modes. 1862 1863 An output without a mode is turned off; do not try to position it. 1864 1865commit 86d9b15cccc4d21ad5e5d34d7e7b82a50903939b 1866Author: Keith Packard <keithp@guitar.keithp.com> 1867Date: Sun Mar 25 23:44:01 2007 -0700 1868 1869 Support XA_ATOM properties (like TV_FORMAT). 1870 1871 Atom properties have lists of valid values that are all atoms, so display 1872 those. Also, fetch property data and use that to determine which format new 1873 property values are supposed to be in. 1874 1875commit dba14af8328eaaad716d1c27a5514df285d8d4cc 1876Author: Keith Packard <keithp@guitar.keithp.com> 1877Date: Fri Mar 23 01:21:21 2007 -0700 1878 1879 Add --set option to set output properties. 1880 1881 Numeric values are set as XA_INTEGER format 32 values, everything else is 1882 set as an XA_STRING format 8 value. 1883 1884commit ca7a5bb5691ecd1d8da6def373c793aa7a07dbbe 1885Author: Keith Packard <keithp@guitar.keithp.com> 1886Date: Thu Mar 15 20:57:17 2007 -0700 1887 1888 Bounds check -s <index> argument to be 0 <= index < nsize 1889 1890 Print a nice error message when the -s option is passed a number out of 1891 bounds. 1892 1893commit 0cbbc7804781c2e55899ba9271365735c4a2b544 1894Author: Keith Packard <keithp@guitar.keithp.com> 1895Date: Thu Mar 15 20:56:15 2007 -0700 1896 1897 Make --q1 output RandR 1.1 query information. 1898 1899 --q1 required a --query option to actually output any information. 1900 1901commit 7ae11b66cc26395d34070013e23813db3ca3e55f 1902Author: Keith Packard <keithp@guitar.keithp.com> 1903Date: Thu Mar 15 20:55:30 2007 -0700 1904 1905 Make --auto after --output only affect the output. 1906 1907 --auto has two meanings; if presented before any --output flags, it requests 1908 that connected-but-disabled outputs be enable while disconnected-but-enabled 1909 outputs be disabled. After --output, --auto simply asks that the mode used 1910 for the output be automatically selected. Mixing these two operations is not 1911 a good default. 1912 1913commit a53cc9b37c40dca936037a89013253f37c9a05ee 1914Author: Keith Packard <keithp@guitar.keithp.com> 1915Date: Mon Mar 12 22:47:39 2007 -0700 1916 1917 Add --addmode and --delmode commands to edit list of modes per output. 1918 1919 --addmode <output> <mode> inserts <mode> into the list supported by 1920 <output>, while --delmode removes a mode. 1921 1922commit dca4bd66b166b64314993aba34a3080c6953ac12 1923Author: Keith Packard <keithp@guitar.keithp.com> 1924Date: Mon Feb 19 17:12:24 2007 -0800 1925 1926 Add --newmode/--rmmode to create/destroy user modes. 1927 1928 The syntax may be a bit hard to work with, but these serve to test the 1929 server infrastructure for custom modes. 1930 1931commit 9fd6aa1445a8f1e721ba8cdcd1ac12375d6e5a26 1932Author: Tilman Sauerbeck <tilman@code-monkey.de> 1933Date: Fri Mar 9 10:12:17 2007 +0100 1934 1935 Fixed alignment of the clones list. 1936 1937commit 3c44d68d78d8bddf69b5bd1a00f854d8cde971bb 1938Author: Keith Packard <keithp@neko.keithp.com> 1939Date: Wed Feb 21 11:24:35 2007 -0800 1940 1941 Add --same-as option to match output positions. 1942 1943 This provides another positioning option that makes two outputs appear at 1944 the same location. 1945 1946commit 8a0c3b748b0e94c97fbc2a7449c6740b8acfe394 1947Author: Keith Packard <keithp@neko.keithp.com> 1948Date: Sun Feb 18 21:27:55 2007 -0800 1949 1950 Update version number to 1.2.0 for release. 1951 1952commit 13cef2baa884039e96f5dfd9245bb949aed99448 1953Merge: 065f09cc304d a175972de6fb 1954Author: Keith Packard <keithp@neko.keithp.com> 1955Date: Sun Feb 18 21:26:50 2007 -0800 1956 1957 Merge branch 'origin' 1958 1959commit 065f09cc304d0c70eaf3cf6f3ff21e712e41d205 1960Author: Keith Packard <keithp@neko.keithp.com> 1961Date: Sun Feb 18 21:25:54 2007 -0800 1962 1963 Require only libXrandr 1.2.0, not 1.2.0.0. 1964 1965 Four digits seems excessive in a library version number. 1966 1967commit a175972de6fbe5426fb5c6bee03112678f0a9548 1968Author: Keith Packard <keithp@guitar.keithp.com> 1969Date: Thu Feb 15 23:07:34 2007 -0800 1970 1971 Select crtc which can be cloned to outputs which will be in use. 1972 1973 Correct crtc selection algorithm to choose a crtc which will be used by 1974 outputs which can all share the same crtc. 1975 1976 Also, make randr 1.0 commands work even when --verbose is specified, and 1977 terminate event loop in that case when the screen change event is seen. 1978 1979commit d707822aab19a0a8fe08f03300fdd9d4e206871e 1980Author: Keith Packard <keithp@neko.keithp.com> 1981Date: Sat Feb 10 18:27:06 2007 -0800 1982 1983 Selecting a crtc by index was failing to match a crtc. 1984 1985 --crtc <index> would fail to match because of a logic bug using & instead of 1986 &&. 1987 1988commit 89bf2c3c0e17c67adc3e2fdca54f0e8254dc8968 1989Author: Keith Packard <keithp@neko.keithp.com> 1990Date: Sat Feb 10 16:14:58 2007 -0800 1991 1992 Display set of available CRTCs per output in --verbose mode. 1993 1994commit 067cafb5cda0aa6e34773e888fd469ff657760c2 1995Merge: 7c25c245bceb b0a00df69f83 1996Author: Keith Packard <keithp@guitar.keithp.com> 1997Date: Wed Jan 31 15:25:35 2007 -0800 1998 1999 Merge branch 'randr-1.2' 2000 2001 Merge support for RandR 1.2 changes to the xrandr program along with 2002 documentation for the new options. 2003 2004commit b0a00df69f832ada40be6bd6973835439a698440 2005Author: Keith Packard <keithp@guitar.keithp.com> 2006Date: Wed Jan 31 15:22:02 2007 -0800 2007 2008 Update documentation to include all RandR 1.2 options. 2009 2010 Also, require libXrandr version 1.2.0.0 or better. 2011 2012commit 6b9310d66eed59527d4002294be13884a7cbeacc 2013Author: Keith Packard <keithp@guitar.keithp.com> 2014Date: Tue Jan 30 20:35:58 2007 -0800 2015 2016 Missing return statement from output_rotation. 2017 2018 output_rotation was returning garbage making the available output rotations 2019 display incorrectly. 2020 2021commit 5c3b6b1013c7565c40e82bfc0514a3dd80aec2d8 2022Author: Keith Packard <keithp@neko.keithp.com> 2023Date: Tue Jan 30 20:16:46 2007 -0800 2024 2025 Remove xrandr12.c app now that xrandr.c has RandR 1.2 support. 2026 2027commit eaf3e459d7760bbcb3c7f7c9b23b1e386189c71e 2028Author: Keith Packard <keithp@neko.keithp.com> 2029Date: Tue Jan 30 00:10:23 2007 -0800 2030 2031 Add --reflect option for RandR 1.2 reflection selection. 2032 2033 Also, display available rotations after current rotation 2034 2035commit 8ecc6c034836a6fb6df0e2ad24429f506bf82e37 2036Author: Eric Anholt <eric@anholt.net> 2037Date: Tue Jan 16 10:48:01 2007 -0800 2038 2039 Add display for 32-bit integer properties, such as backlight. 2040 2041commit 4112d13d7b15150e33687b687604c3a72188c066 2042Author: Keith Packard <keithp@mandolin.keithp.com> 2043Date: Mon Jan 1 17:04:42 2007 -0800 2044 2045 Mode on CRTC may not be present for any output. 2046 2047 When an output gets disconnected, the current CRTC mode may no longer be 2048 listed as valid for any output, but will still be listed for the screen. 2049 Search for current crtc mode in the screen list rather than the per-output 2050 list. 2051 2052commit 6ef7b2deafd09ae1a4b159f3c2e6e9db64bf01dc 2053Author: Keith Packard <keithp@neko.keithp.com> 2054Date: Sun Dec 31 23:02:12 2006 -0800 2055 2056 Using %lf to read float overwrote adjacent variable. 2057 2058 Just use floats everywhere and %f instead. 2059 2060commit f6073333dcfb6989ff8793854fb42e08388444c5 2061Author: Keith Packard <keithp@neko.keithp.com> 2062Date: Sun Dec 31 13:55:14 2006 -0800 2063 2064 Add rotation/reflection status to 1.2 query output. 2065 2066 The previous cleanup had left these values missing from any output. 2067 Also it now reports the effective size of the mode within the screen. 2068 2069commit 5d2a76b70b7b59a45655b25db79d75cb08fe671d 2070Author: Keith Packard <keithp@neko.keithp.com> 2071Date: Sun Dec 31 13:38:40 2006 -0800 2072 2073 Clean up RandR 1.2 query output. 2074 2075 Make brief mode list just mode names and refresh rates. 2076 Add --prop/--properties flag to show properties. 2077 Add --q1 flag to force showing pre-1.2 data. 2078 2079commit d9aeb4a7544ad4a33f6f54bc46bff5cdf231a986 2080Author: Keith Packard <keithp@neko.keithp.com> 2081Date: Sun Dec 31 12:45:25 2006 -0800 2082 2083 Add --rate support to RandR 1.2 mode selection. 2084 2085 Search for mode closest to specified rate for each output and use that 2086 instead of the one with the first matching name. If no rate is specified, 2087 the first one still matches allowing the driver to place preferred rates 2088 first in the list. 2089 2090commit c04d69cbd8a8a96862356afcda6ee679d663a524 2091Author: Keith Packard <keithp@neko.keithp.com> 2092Date: Sun Dec 31 11:58:11 2006 -0800 2093 2094 Grab server while applying changes. 2095 2096 Applications that respond to screen size changes by quering Xinerama 2097 information need to be blocked so that they see the entirety of the changes 2098 rather than just the screen size shift and not the crtc changes. 2099 2100commit 8e78af971048db711163ea297153703b4f37f3c9 2101Author: Keith Packard <keithp@neko.keithp.com> 2102Date: Sat Dec 30 21:49:40 2006 -0800 2103 2104 Enable global --auto flag. Allow output name for --dpi switch. 2105 2106 --auto at the global level checks for output status changes and 2107 automatically configures changed outputs. --dpi with an output switch uses 2108 the specified output as the source of the dpi information. 2109 2110commit f7a3e478a6a5d59a2bbcd6dc416639f93a0520fd 2111Author: Keith Packard <keithp@neko.keithp.com> 2112Date: Sat Dec 30 19:41:48 2006 -0800 2113 2114 Use Bool type. Position relative to disabled output is 0,0. 2115 2116 Switch uses of int that are strictly boolean to Bool. 2117 Instead of making attempts to set position relative to a disabled output an 2118 error, just place the output at 0,0. 2119 2120commit cb017692883daf64e0cf442a39b33eaafed0e420 2121Author: Keith Packard <keithp@neko.keithp.com> 2122Date: Sat Dec 30 17:34:46 2006 -0800 2123 2124 Restructure RandR 1.2 support to handle relative placement. 2125 2126 Ok, really, this is mostly a rewrite of the RandR 1.2 support. First, 2127 collect commands from command line arguments. Next, fill in existing 2128 configuration from X server. Calculate new configuration. Apply 2129 configuration, if anything fails, revert to previous configuration. 2130 2131 Still left -- pure --auto, and --extend/--clone options. 2132 2133commit b9dee113ce4105c1cf25e3c417c616c024aea823 2134Author: Keith Packard <keithp@guitar.keithp.com> 2135Date: Fri Dec 29 00:55:37 2006 -0800 2136 2137 Make query return 1.2 information if available 2138 2139commit 90e4a4c13957bd003294f64b86460813dd38a3de 2140Author: Keith Packard <keithp@neko.keithp.com> 2141Date: Thu Dec 21 17:37:20 2006 -0800 2142 2143 Accept hex mode numbers as well as mode names. 2144 2145 Sometimes mode names are ambiguous; this lets the user specify modes by XID. 2146 2147commit e8f7047885ec85096a3f35b9cfb20386104fdc55 2148Author: Keith Packard <keithp@neko.keithp.com> 2149Date: Tue Dec 19 16:27:46 2006 -0800 2150 2151 Actually respect the --fb option 2152 2153commit 7b32611632ab08b6a123db5df1c2b919b3a12104 2154Merge: a0df3aa81205 4bb1a9cd6f9c 2155Author: Keith Packard <keithp@guitar.keithp.com> 2156Date: Tue Dec 19 15:58:38 2006 -0800 2157 2158 Merge branch 'randr-1.2-origin' into randr-1.2 2159 2160commit a0df3aa81205b35ff8d9541c036cfd158cbd99ed 2161Author: Keith Packard <keithp@guitar.keithp.com> 2162Date: Tue Dec 19 15:58:21 2006 -0800 2163 2164 Correct format for sscanf to double variable "dpi" 2165 2166commit 4bb1a9cd6f9cc3ed61d7913528afa3f573092833 2167Merge: b6c03827bae7 6ef400f35d7d 2168Author: Keith Packard <keithp@bouzouki.jf.intel.com> 2169Date: Wed Dec 13 11:36:36 2006 -0800 2170 2171 Merge branch 'randr-1.2-origin' into randr-1.2. Detect invalid mode. 2172 2173 Invalid mode test was checking wrong mode index. Also, print more 2174 informative error message when this occurs. 2175 2176commit b6c03827bae74ef5b9517c4246b0165dad8ee780 2177Author: Keith Packard <keithp@bouzouki.jf.intel.com> 2178Date: Wed Dec 13 11:27:30 2006 -0800 2179 2180 Name CRTCs by index or id. Use current CRTC to get current mode. 2181 2182 CRTCs have no intrinsic name, so let users provide either the number in the 2183 list or the XID when referring to them explicitly. 2184 When no mode is specified, look up the current CRTC for the output and use 2185 that mode, instead of using the mode on the target CRTC. 2186 When switching an output from one CRTC 2187 2188commit 6ef400f35d7d8712d1ad1efd87a8a3cb8bfacd96 2189Author: Keith Packard <keithp@guitar.keithp.com> 2190Date: Wed Dec 13 09:53:17 2006 -0800 2191 2192 Add --preferred and --auto support. 2193 2194 --preferred selects the 'best' mode for the monitor automatically, either by 2195 looking for a preferred mode, or selecting one which is closest to the 2196 current screen DPI. 2197 2198 --auto checks connected status and disables the output if disconnected, 2199 otherwise it enables it with the preferred mode (as if --preferred). 2200 2201commit c69c3080febd8617349f88557c3c04388a13a76c 2202Author: Keith Packard <keithp@guitar.keithp.com> 2203Date: Tue Dec 12 09:54:52 2006 -0800 2204 2205 mark disabled crtc as changing, set rotation to 90 for disabled crtc. 2206 2207 --off code was not correctly finding and marking the to-be-disabled crtc, 2208 and the disabling code was sending an uninitialized rotation value to the 2209 server when no outputs were connected. 2210 2211commit 6be56cd10d934e496004f9ffd377225fd179f4b1 2212Author: Keith Packard <keithp@neko.keithp.com> 2213Date: Mon Dec 11 00:39:48 2006 -0800 2214 2215 Update manual, elide unsupported options from usage, remove xrandr12 from build 2216 2217commit 624c75e8c250b33a81890c8f0da741a13ad4e7d1 2218Author: Keith Packard <keithp@neko.keithp.com> 2219Date: Mon Dec 11 00:23:15 2006 -0800 2220 2221 Add RandR 1.2 support to plain xrandr app. primitive for now 2222 2223commit 7c25c245bceb0474541fe7a2615a4f665842ac32 2224Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 2225Date: Sat Dec 9 06:32:19 2006 -0600 2226 2227 Document -v switch. 2228 2229commit 2a32fa8cf8550a3a30871d25a23af07f65646c47 2230Author: Keith Packard <keithp@neko.keithp.com> 2231Date: Tue Nov 21 01:17:38 2006 -0800 2232 2233 Track RandR output property changes 2234 2235commit 795173d2b9b94a3468db277102b4898b4e5a1ead 2236Author: Keith Packard <keithp@neko.keithp.com> 2237Date: Thu Nov 16 22:14:33 2006 -0800 2238 2239 properties are stored in unsigned char arrays 2240 2241commit 2df4352bb43e155977f8d4c0b53771cb0085ab74 2242Author: Keith Packard <keithp@neko.keithp.com> 2243Date: Thu Nov 16 11:45:51 2006 -0800 2244 2245 Remove RandR output options. 2246 2247 Output options are to be replaced with properties. 2248 2249commit 643787365fd716b902b597b67b2ec228dacfc862 2250Author: Keith Packard <keithp@neko.keithp.com> 2251Date: Wed Nov 1 10:57:24 2006 -0800 2252 2253 Re-indent to 4 space tabs 2254 2255commit 947ea6ee9d7cf72c5635c699b63ddda3be968675 2256Author: Keith Packard <keithp@neko.keithp.com> 2257Date: Wed Nov 1 10:55:21 2006 -0800 2258 2259 Fix copyright and license information 2260 2261commit dc41095b577db571439ff1a52facc4efe9f5132f 2262Author: Eric Anholt <eric@anholt.net> 2263Date: Thu Nov 9 20:26:09 2006 -0800 2264 2265 Print 8-bit integer output properties as 32-char rows of hex. 2266 2267 This happens to produce pretty output for EDID data. 2268 2269commit 67466ebb817e24bfd7f57cc82da16e194eb9c547 2270Author: Eric Anholt <eric@anholt.net> 2271Date: Thu Nov 9 17:15:56 2006 -0800 2272 2273 Add more .gitignore entries. 2274 2275commit aafe9f7d24e96194a7ee11ba521a3c2c72dcdc95 2276Author: Eric Anholt <eric@anholt.net> 2277Date: Thu Nov 9 17:15:06 2006 -0800 2278 2279 Add output for output properties (assuming text) and blanking information. 2280 2281commit 6ba07ae9ea5fa2829d17e8a1f3eb26e7c1a2813e 2282Author: Eric Anholt <eric@anholt.net> 2283Date: Wed Nov 8 10:23:47 2006 -0800 2284 2285 Add dot clock to output. 2286 2287commit fba78f58029a806e4446d038b17b843d2c4026a6 2288Author: Keith Packard <keithp@mandolin.keithp.com> 2289Date: Wed Nov 1 00:32:22 2006 -0800 2290 2291 Track protocol moving physical size from mode to output 2292 2293commit d9c45204a16e906b922ac94cae3c9f4f25b3ccdb 2294Author: Keith Packard <keithp@neko.keithp.com> 2295Date: Thu Oct 26 22:58:58 2006 -0700 2296 2297 add physical size setting 2298 2299commit bd6ac82ff7e7fc04ab589a3053dc7f13ed7a1ec4 2300Author: Keith Packard <keithp@neko.keithp.com> 2301Date: Thu Oct 5 21:50:42 2006 -0700 2302 2303 Add crtc info. Mark preferred. Update to new SetCrtcConfig API. 2304 2305commit fe04d38d01f54b93ddaf1cd48a655df7f7fe4b97 2306Author: Keith Packard <keithp@neko.keithp.com> 2307Date: Thu Sep 21 08:16:45 2006 -0700 2308 2309 Add CRTC disable code (given crtc, output 0, mode 0) 2310 2311commit 7f1b81d443b78ff572726ad7d72eeb4a87c7189d 2312Author: Keith Packard <keithp@guitar.keithp.com> 2313Date: Wed Sep 20 20:03:22 2006 -0700 2314 2315 xrandr12, a horrible kludge, is now sufficient to do dynamic mergefb games. 2316 2317commit eba1d3d8ab6226737c29e63fdd5433190baab06f 2318Author: Keith Packard <keithp@guitar.keithp.com> 2319Date: Wed Sep 20 20:02:43 2006 -0700 2320 2321 .cvsignore -> .gitignore 2322 2323commit 6c5af262350a5fa33aa37293e8e7b537e344f52a 2324Author: Keith Packard <keithp@guitar.keithp.com> 2325Date: Wed Sep 20 20:02:09 2006 -0700 2326 2327 .cvsignore -> .gitignore 2328 2329commit d8e86340444577dc7634d3e0db24fd809f4e4fbb 2330Author: Keith Packard <keithp@guitar.keithp.com> 2331Date: Tue Sep 19 00:35:46 2006 -0700 2332 2333 Add new xrandr12 program for RandR 1.2 protocol. 2334 2335 Yes, xrandr12 will be merged with xrandr before release; it's just for 2336 debugging at present. 2337 2338commit f88f8e79724b27f46a836fac4956cbe28749633a 2339Author: Adam Jackson <ajax@nwnk.net> 2340Date: Wed Apr 26 23:43:34 2006 +0000 2341 2342 Bump to 1.0.2 2343 2344commit 47c6288e63ebe7a9bb2f3225e7d5a235bd979a5f 2345Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 2346Date: Tue Apr 25 22:54:01 2006 +0000 2347 2348 Don't try to fprintf a NULL string when -display wasn't passed and 2349 connecting to $DISPLAY failed, since that segfaults on some platforms. 2350 2351commit 0197bfdddca98c72bca0eeee349b90027638fc32 2352Author: Adam Jackson <ajax@nwnk.net> 2353Date: Mon Mar 20 18:56:37 2006 +0000 2354 2355 Bug #5511, #5512: Print more sensible error messages when fed broken 2356 command lines. (Bill Crawford) 2357 2358commit 4f785cb5db6d95c9f539500e7b202a0f5addd19f 2359Author: Kevin E Martin <kem@kem.org> 2360Date: Wed Dec 21 02:29:53 2005 +0000 2361 2362 Update package version for X11R7 release. 2363 2364commit 83491d233781c9e6a362aa8bac1ab4f2a239fdee 2365Author: Adam Jackson <ajax@nwnk.net> 2366Date: Mon Dec 19 16:22:46 2005 +0000 2367 2368 Stub COPYING files 2369 2370commit 5d09a0b505a2c08b81879e61173459d23f4c41db 2371Author: Kevin E Martin <kem@kem.org> 2372Date: Thu Dec 15 00:24:10 2005 +0000 2373 2374 Update package version number for final X11R7 release candidate. 2375 2376commit 3e0eb5b6f68ef9120153e7f01b4243ad4fa44254 2377Author: Kevin E Martin <kem@kem.org> 2378Date: Tue Dec 6 22:48:25 2005 +0000 2379 2380 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 2381 2382commit d52f178dc51182e14d5d7ad9f2842f3e1d30a57f 2383Author: Kevin E Martin <kem@kem.org> 2384Date: Sat Dec 3 05:49:27 2005 +0000 2385 2386 Update package version number for X11R7 RC3 release. 2387 2388commit f3b3596d181a7ab89b90561490f822171ec77479 2389Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 2390Date: Mon Nov 28 22:01:46 2005 +0000 2391 2392 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 2393 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 2394 2395commit 28c2280644f808c89e42e379b531fbb0fdf39bc7 2396Author: Eric Anholt <anholt@freebsd.org> 2397Date: Mon Nov 21 10:35:07 2005 +0000 2398 2399 Another pass at .cvsignores for apps. 2400 2401commit e5ab923625baf41a59e033abf3527709c8ef255b 2402Author: Eric Anholt <anholt@freebsd.org> 2403Date: Sun Nov 20 22:08:55 2005 +0000 2404 2405 Add/improve .cvsignore files for apps. 2406 2407commit 7e1cf1fef9dd000569dd5390380fb567314644a5 2408Author: Kevin E Martin <kem@kem.org> 2409Date: Sat Nov 19 07:15:38 2005 +0000 2410 2411 Update pkgconfig files to separate library build-time dependencies from 2412 application build-time dependencies, and update package deps to work 2413 with separate build roots. 2414 2415commit 89ab28833d4e2ff412a92bb2b47af2d78a109c00 2416Author: Kevin E Martin <kem@kem.org> 2417Date: Wed Oct 19 02:47:57 2005 +0000 2418 2419 Update package version number for RC1 release. 2420 2421commit 60178bb0c8bc97055c9aee7986866ada615491e6 2422Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 2423Date: Mon Oct 17 23:56:24 2005 +0000 2424 2425 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 2426 work better with BSD make 2427 2428commit 958b347b1e5e427858d3e693e5487ec7ba4f5054 2429Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 2430Date: Fri Oct 14 00:25:47 2005 +0000 2431 2432 Use sed to fill in variables in man page 2433 2434commit 35e7414c6e4505b2e71be0e54ed0c7ff74f39db1 2435Author: Aaron Plattner <aplattner@nvidia.com> 2436Date: Thu Oct 6 10:03:08 2005 +0000 2437 2438 Tell the user when setting the screen configuration fails. Return nonzero 2439 so scripts can find out too. 2440 2441commit 938ff7de3f2bc4979bbf8a5f68190cde2be12696 2442Author: Kevin E Martin <kem@kem.org> 2443Date: Fri Jul 29 21:22:37 2005 +0000 2444 2445 Various changes preparing packages for RC0: 2446 - Verify and update package version numbers as needed 2447 - Implement versioning scheme 2448 - Change bug address to point to bugzilla bug entry form 2449 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 2450 reenable it) 2451 - Fix makedepend to use pkgconfig and pass distcheck 2452 - Update build script to build macros first 2453 - Update modular Xorg version 2454 2455commit f241e34fd0f3bedf5aa615dc8e17352b91de8cd9 2456Author: Daniel Stone <daniel@fooishbar.org> 2457Date: Fri Jul 22 07:18:28 2005 +0000 2458 2459 Fix path to man pages. 2460 2461commit f87ac740a20ec3e8b452959081816f5fddeaaf87 2462Author: Adam Jackson <ajax@nwnk.net> 2463Date: Wed Jul 20 19:32:03 2005 +0000 2464 2465 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 2466 configure cache, you cache it, and the cached value is probably wrong. 2467 2468commit 5666f22654447eb381186a85a8e1630d419b0a88 2469Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 2470Date: Fri Jul 1 20:27:45 2005 +0000 2471 2472 Build systems for xrdb, xrandr, xrefresh 2473 2474commit 39a8c733612722dca456c315a5ad299da1fe29d6 2475Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 2476Date: Sat Dec 4 00:43:18 2004 +0000 2477 2478 Encoding of numerous files changed to UTF-8 2479 2480commit df8c56f1f66cce27dd018248a30cd9465d2b545c 2481Author: Egbert Eich <eich@suse.de> 2482Date: Fri Apr 23 19:55:03 2004 +0000 2483 2484 Merging XORG-CURRENT into trunk 2485 2486commit 791685e93f32489dcd2d02a77e1a79ffb6c97c17 2487Author: Egbert Eich <eich@suse.de> 2488Date: Sun Mar 14 08:35:42 2004 +0000 2489 2490 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 2491 2492commit 342e5f4d491f137e3930213e62192de3eece3155 2493Author: Egbert Eich <eich@suse.de> 2494Date: Wed Mar 3 12:13:15 2004 +0000 2495 2496 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 2497 2498commit e3c0383c8fdcf38d34b3fad607949b0693184ca7 2499Author: Egbert Eich <eich@suse.de> 2500Date: Thu Feb 26 13:36:26 2004 +0000 2501 2502 readding XFree86's cvs IDs 2503 2504commit 633350fa648d2b57b3dd94cb1d220a0b826bef55 2505Author: Egbert Eich <eich@suse.de> 2506Date: Thu Feb 26 09:24:14 2004 +0000 2507 2508 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 2509 2510commit 22c66075090a14ad022ae73a080e76a5ace7c5d1 2511Author: Kaleb Keithley <kaleb@freedesktop.org> 2512Date: Tue Nov 25 19:29:15 2003 +0000 2513 2514 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 2515 2516commit 05fa20267de7cdf44fb6de556910ed0e4ce665a5 2517Author: Kaleb Keithley <kaleb@freedesktop.org> 2518Date: Fri Nov 14 16:49:23 2003 +0000 2519 2520 XFree86 4.3.0.1 2521 2522commit c973a27b6d07b8711041c0c22ba8568f168b447a 2523Author: Kaleb Keithley <kaleb@freedesktop.org> 2524Date: Fri Nov 14 16:49:23 2003 +0000 2525 2526 Initial revision 2527