diff options
author | marha <marha@users.sourceforge.net> | 2013-07-16 08:59:33 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-07-16 08:59:33 +0200 |
commit | d00d82f6017166fdeb927320ce4c656cb99319fd (patch) | |
tree | 75d388ec743971c4bdcc85b639f8bc35458b27e0 /libxcb/src | |
parent | 707c146a74f6ff862be3ebb2470d1f31e29dd907 (diff) | |
parent | 06f4de23ace4de1fd628c37891214f0a4ecb77db (diff) | |
download | vcxsrv-d00d82f6017166fdeb927320ce4c656cb99319fd.tar.gz vcxsrv-d00d82f6017166fdeb927320ce4c656cb99319fd.tar.bz2 vcxsrv-d00d82f6017166fdeb927320ce4c656cb99319fd.zip |
Merge remote-tracking branch 'origin/released'
* origin/released:
libxcb xcb-proto mesa xkbcomp git update 16 Jul 2013
Conflicts:
mesalib/src/glsl/glsl_symbol_table.cpp
Diffstat (limited to 'libxcb/src')
-rw-r--r-- | libxcb/src/c_client.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libxcb/src/c_client.py b/libxcb/src/c_client.py index a43eae21b..078037650 100644 --- a/libxcb/src/c_client.py +++ b/libxcb/src/c_client.py @@ -2838,6 +2838,23 @@ def c_event(self, name): ''' Exported function that handles event declarations. ''' + + # The generic event structure xcb_ge_event_t has the full_sequence field + # at the 32byte boundary. That's why we've to inject this field into GE + # events while generating the structure for them. Otherwise we would read + # garbage (the internal full_sequence) when accessing normal event fields + # there. + if hasattr(self, 'is_ge_event') and self.is_ge_event and self.name == name: + event_size = 0 + for field in self.fields: + if field.type.size != None and field.type.nmemb != None: + event_size += field.type.size * field.type.nmemb + if event_size == 32: + full_sequence = Field(tcard32, tcard32.name, 'full_sequence', False, True, True) + idx = self.fields.index(field) + self.fields.insert(idx + 1, full_sequence) + break + _c_type_setup(self, name, ('event',)) # Opcode define |