Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-10-06 | Replace structures attempting to provide C type safety with CARD32 typedefs | Josh Triplett | 1 | -15/+5 | |
2006-09-25 | Release xcb-proto 1.0 RC1 (0.9.91).1.0-RC1 | Jamey Sharp | 1 | -1/+1 | |
2006-09-25 | Stop installing the protocol descriptions for extensions to an extensions/ | Josh Triplett | 1 | -23/+24 | |
subdirectory | |||||
2006-09-25 | Move XML protocol descriptions to $datadir/xcb (generally $prefix/share/xcb). | Jamey Sharp | 2 | -2/+3 | |
2006-09-24 | Integrate top-level .gitignore into .gitignore for each subdirectory | Josh Triplett | 1 | -0/+30 | |
In preparation for the repository split, move the relevant contents of the top-level .gitignore into the .gitignore for each immediate subdirectory. | |||||
2006-09-23 | The Great XCB Renaming | Josh Triplett | 3 | -40/+40 | |
Rename API to follow a new naming convention: * XCB_CONSTANTS_UPPERCASE_WITH_UNDERSCORES * xcb_functions_lowercase_with_underscores * xcb_types_lowercase_with_underscores_and_suffix_t * expand all abbreviations like "req", "rep", and "iter" Word boundaries for the names in the protocol descriptions fall: * Wherever the protocol descriptions already have an underscore * Between a lowercase letter and a subsequent uppercase letter * Before the last uppercase letter in a string of uppercase letters followed by a lowercase letter (such as in LSBFirst between LSB and First) * Before and after a string of digits (with exceptions for sized types like xcb_char2b_t and xcb_glx_float32_t to match the stdint.h convention) Also fix up some particular naming issues: * Rename shape_op and shape_kind to drop the "shape_" prefix, since otherwise these types end up as xcb_shape_shape_{op,kind}_t. * Remove leading underscores from enums in the GLX protocol description, previously needed to ensure a word separator, but now redundant. This renaming breaks code written for the previous API naming convention. The scripts in XCB's tools directory will convert code written for the old API to use the new API; they work well enough that we used them to convert the non-program-generated code in XCB, and when run on the old program-generated code, they almost exactly reproduce the new program-generated code (modulo whitespace and bugs in the old code generator). Authors: Vincent Torri, Thomas Hunger, Josh Triplett | |||||
2006-09-18 | XCBButton -> XCBButtonIndex. XCBHost -> XCBHostMode. XCBSetupReq -> ↵ | TORRI Vincent | 1 | -3/+3 | |
XCBSetupRequest | |||||
2006-08-07 | Remove combine-adjacent tag on PolyPoint: it will not work for some forms of ↵ | Jamey Sharp | 1 | -1/+2 | |
the request. | |||||
2006-07-24 | add flags for Alarm Attributes | TORRI Vincent | 1 | -0/+9 | |
2006-06-15 | Add a useful assertion message if a type gets multiply declared. | Jamey Sharp | 1 | -1/+1 | |
2006-06-15 | Bugfix: Make type shadowing go the right way in type.py. | Jamey Sharp | 1 | -1/+1 | |
2006-06-15 | Remove arbitrary division between xcb_types and xproto by merging | Josh Triplett | 6 | -254/+223 | |
xcb_types.xml into xproto.xml. | |||||
2006-06-14 | Bugfix for size.py: count padding in struct size. | Jamey Sharp | 1 | -0/+4 | |
2006-06-14 | type.py qualifies all type names with the header in which they are defined. | Jamey Sharp | 2 | -13/+83 | |
Update size.py to quit doing a bad job at the same task. Suggested usage is now: ./import.py extensions/composite.xml | ./type.py | ./size.py | |||||
2006-06-13 | Process <import> directives with a new import.py tool. | Jamey Sharp | 2 | -8/+88 | |
Update size.py to accept all the data it needs in one file or stdin. | |||||
2006-06-13 | Simpler implementation of AttributesUnion for XML processing. | Jamey Sharp | 1 | -5/+4 | |
2006-06-13 | New tool to annotate XML-XCB <field>s with their size in bytes. | Jamey Sharp | 1 | -0/+65 | |
2006-06-06 | Update Shape extension to version 1.1 | Ian Osgood | 1 | -0/+2 | |
2006-06-06 | Screen saver: wrong reply field sizes. | Ian Osgood | 1 | -2/+2 | |
2006-06-06 | Update Composite to version 0.3 | Ian Osgood | 1 | -1/+16 | |
2006-06-06 | Update Render to version 0.10 | Ian Osgood | 1 | -42/+66 | |
Renamed previous type TRAP -> TRAPEZOID to make room for new TRAP type. Use <bit> construct for masks. | |||||
2006-06-06 | Update screen saver protocol to version 1.1 | Ian Osgood | 1 | -24/+20 | |
Fix type names, field sizes, and padding. | |||||
2006-06-06 | Update XFixes to protocol version 4. | Ian Osgood | 1 | -13/+14 | |
Use <bit> construct for mask enums. | |||||
2006-05-09 | num_props is a stupid name, changing to num_properties, it's a bit clearer ↵ | Jeremy Kolb | 1 | -1/+1 | |
and matches fields such as "num_visuals". | |||||
2006-04-29 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb | Josh Triplett | 2 | -3/+4 | |
2006-04-29 | Set distribution to experimental. | Josh Triplett | 1 | -2/+3 | |
2006-04-29 | Remove Bugs field in debian/control, so bugs go to the Debian BTS. | Josh Triplett | 2 | -2/+2 | |
2006-04-29 | Get rid of the value list/mask in requests. | Jeremy Kolb | 1 | -6/+7 | |
2006-04-28 | Move the remainder of the constants in X.h into XML enumerations. | Ian Osgood | 2 | -7/+235 | |
Fix xcb_auth to use one of the new enumerations. | |||||
2006-04-28 | Fix incorrect extension xname0.9 | Alp Toker | 1 | -1/+1 | |
2006-04-27 | Fix the year in the other COPYING. | Josh Triplett | 1 | -1/+1 | |
2006-04-27 | Add test program for XFree86-DRI extension to xcb-demo. Mark XFree86-DRI ↵ | Josh Triplett | 1 | -1/+1 | |
extension as tested and working. | |||||
2006-04-27 | Add some additional extensions from xdpyinfo to the TODO list. | Josh Triplett | 1 | -1/+9 | |
2006-04-27 | Fix typo in TODO. | Josh Triplett | 1 | -1/+1 | |
2006-04-27 | Update TODO for XTEST implementation. | Josh Triplett | 1 | -4/+2 | |
2006-04-26 | Rename ConnSetup* to Setup*, Setup*Rep to Setup*, and SetupSuccess* to ↵ | Jamey Sharp | 1 | -10/+4 | |
Setup*. Provide deprecated backwards-compatability functions and typedefs for the old names, to be removed before 1.0. | |||||
2006-04-26 | Changes to makefile to build libXCBxtest | Ian Osgood | 1 | -0/+1 | |
2006-04-24 | Implement XTest extension and xte demo | Ian Osgood | 1 | -0/+104 | |
2006-04-19 | Merge branch 'master' of git+ssh://iano@git.freedesktop.org/git/xcb | Ian Osgood | 10 | -48/+63 | |
2006-04-16 | * Validate the protocol descriptions during the build: | Josh Triplett | 3 | -2/+7 | |
* Set DEB_MAKE_CHECK_TARGET=check in debian/rules. * Add Build-Depends on libxml2-utils for xmllint. | |||||
2006-04-16 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb | Josh Triplett | 1 | -4/+5 | |
2006-04-16 | Improve package descriptions. | Josh Triplett | 1 | -9/+15 | |
2006-04-16 | * Debian X11R7 transition: | Josh Triplett | 3 | -3/+6 | |
* Install protocol descriptions to /usr/include/X11, not /usr/X11R6/include/X11. * Pre-Depends: x11-common (>= 1:1.09). | |||||
2006-04-15 | Change human-readable name from "XCBProto" to "XCB Proto"; this changes the | Josh Triplett | 2 | -2/+2 | |
tarname to "xcb-proto", which matches the Debian package and looks better than "xcbproto". | |||||
2006-04-15 | Stop running autoreconf in debian/rules, and remove Build-Depends for autoconf | Josh Triplett | 3 | -7/+9 | |
and automake. | |||||
2006-04-15 | Add doc directory to EXTRA_DIST. | Josh Triplett | 1 | -1/+1 | |
2006-04-15 | * Actually add extensions/screensaver.xml to Makefile.am, so it gets checked | Josh Triplett | 1 | -21/+22 | |
and installed. * Don't line up backslashes in a single column, since it forces a change to every line when adding a longer item. | |||||
2006-03-28 | Clean up some names. | Jeremy Kolb | 1 | -4/+5 | |
2006-03-22 | Work on the tutorial, and update xproto.xml to match: | Ian Osgood | 1 | -1/+20 | |
* Fixed grammar * Answered some TODO's and added some more * Updated X.h constants to those in xproto.h * Added enumerations used in tutorial to xproto.xml * Prefered XCBFlush to XCBSync * Corrected and refactored the "events" example I extracted the examples to test them. Where should I put them? | |||||
2006-03-21 | Remove outdated fd.o-* entries from */debian/.gitignore (obsolete since ↵ | Josh Triplett | 1 | -1/+0 | |
before they came from .cvsignore). |