summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-10-06Replace structures attempting to provide C type safety with CARD32 typedefsJosh Triplett1-15/+5
2006-09-25Release xcb-proto 1.0 RC1 (0.9.91).1.0-RC1Jamey Sharp1-1/+1
2006-09-25Stop installing the protocol descriptions for extensions to an extensions/Josh Triplett1-23/+24
subdirectory
2006-09-25Move XML protocol descriptions to $datadir/xcb (generally $prefix/share/xcb).Jamey Sharp2-2/+3
2006-09-24Integrate top-level .gitignore into .gitignore for each subdirectoryJosh Triplett1-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-23The Great XCB RenamingJosh Triplett3-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-18XCBButton -> XCBButtonIndex. XCBHost -> XCBHostMode. XCBSetupReq -> ↵TORRI Vincent1-3/+3
XCBSetupRequest
2006-08-07Remove combine-adjacent tag on PolyPoint: it will not work for some forms of ↵Jamey Sharp1-1/+2
the request.
2006-07-24add flags for Alarm AttributesTORRI Vincent1-0/+9
2006-06-15Add a useful assertion message if a type gets multiply declared.Jamey Sharp1-1/+1
2006-06-15Bugfix: Make type shadowing go the right way in type.py.Jamey Sharp1-1/+1
2006-06-15Remove arbitrary division between xcb_types and xproto by mergingJosh Triplett6-254/+223
xcb_types.xml into xproto.xml.
2006-06-14Bugfix for size.py: count padding in struct size.Jamey Sharp1-0/+4
2006-06-14type.py qualifies all type names with the header in which they are defined.Jamey Sharp2-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-13Process <import> directives with a new import.py tool.Jamey Sharp2-8/+88
Update size.py to accept all the data it needs in one file or stdin.
2006-06-13Simpler implementation of AttributesUnion for XML processing.Jamey Sharp1-5/+4
2006-06-13New tool to annotate XML-XCB <field>s with their size in bytes.Jamey Sharp1-0/+65
2006-06-06Update Shape extension to version 1.1Ian Osgood1-0/+2
2006-06-06Screen saver: wrong reply field sizes.Ian Osgood1-2/+2
2006-06-06Update Composite to version 0.3Ian Osgood1-1/+16
2006-06-06Update Render to version 0.10Ian Osgood1-42/+66
Renamed previous type TRAP -> TRAPEZOID to make room for new TRAP type. Use <bit> construct for masks.
2006-06-06Update screen saver protocol to version 1.1Ian Osgood1-24/+20
Fix type names, field sizes, and padding.
2006-06-06Update XFixes to protocol version 4.Ian Osgood1-13/+14
Use <bit> construct for mask enums.
2006-05-09num_props is a stupid name, changing to num_properties, it's a bit clearer ↵Jeremy Kolb1-1/+1
and matches fields such as "num_visuals".
2006-04-29Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcbJosh Triplett2-3/+4
2006-04-29Set distribution to experimental.Josh Triplett1-2/+3
2006-04-29Remove Bugs field in debian/control, so bugs go to the Debian BTS.Josh Triplett2-2/+2
2006-04-29Get rid of the value list/mask in requests.Jeremy Kolb1-6/+7
2006-04-28Move the remainder of the constants in X.h into XML enumerations.Ian Osgood2-7/+235
Fix xcb_auth to use one of the new enumerations.
2006-04-28Fix incorrect extension xname0.9Alp Toker1-1/+1
2006-04-27Fix the year in the other COPYING.Josh Triplett1-1/+1
2006-04-27Add test program for XFree86-DRI extension to xcb-demo. Mark XFree86-DRI ↵Josh Triplett1-1/+1
extension as tested and working.
2006-04-27Add some additional extensions from xdpyinfo to the TODO list.Josh Triplett1-1/+9
2006-04-27Fix typo in TODO.Josh Triplett1-1/+1
2006-04-27Update TODO for XTEST implementation.Josh Triplett1-4/+2
2006-04-26Rename ConnSetup* to Setup*, Setup*Rep to Setup*, and SetupSuccess* to ↵Jamey Sharp1-10/+4
Setup*. Provide deprecated backwards-compatability functions and typedefs for the old names, to be removed before 1.0.
2006-04-26Changes to makefile to build libXCBxtestIan Osgood1-0/+1
2006-04-24Implement XTest extension and xte demoIan Osgood1-0/+104
2006-04-19Merge branch 'master' of git+ssh://iano@git.freedesktop.org/git/xcbIan Osgood10-48/+63
2006-04-16 * Validate the protocol descriptions during the build:Josh Triplett3-2/+7
* Set DEB_MAKE_CHECK_TARGET=check in debian/rules. * Add Build-Depends on libxml2-utils for xmllint.
2006-04-16Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcbJosh Triplett1-4/+5
2006-04-16Improve package descriptions.Josh Triplett1-9/+15
2006-04-16 * Debian X11R7 transition:Josh Triplett3-3/+6
* Install protocol descriptions to /usr/include/X11, not /usr/X11R6/include/X11. * Pre-Depends: x11-common (>= 1:1.09).
2006-04-15Change human-readable name from "XCBProto" to "XCB Proto"; this changes theJosh Triplett2-2/+2
tarname to "xcb-proto", which matches the Debian package and looks better than "xcbproto".
2006-04-15Stop running autoreconf in debian/rules, and remove Build-Depends for autoconfJosh Triplett3-7/+9
and automake.
2006-04-15Add doc directory to EXTRA_DIST.Josh Triplett1-1/+1
2006-04-15* Actually add extensions/screensaver.xml to Makefile.am, so it gets checkedJosh Triplett1-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-28Clean up some names.Jeremy Kolb1-4/+5
2006-03-22Work on the tutorial, and update xproto.xml to match:Ian Osgood1-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-21Remove outdated fd.o-* entries from */debian/.gitignore (obsolete since ↵Josh Triplett1-1/+0
before they came from .cvsignore).