mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Prepare for array-index based devPrivates.
TODO: static indices can be made just an int; some indices can be combined.
This commit is contained in:
parent
ec7907f8fa
commit
ebea78cdba
78 changed files with 287 additions and 146 deletions
|
|
@ -38,8 +38,10 @@
|
|||
#include "exa.h"
|
||||
#include "cw.h"
|
||||
|
||||
DevPrivateKey exaScreenPrivateKey = &exaScreenPrivateKey;
|
||||
DevPrivateKey exaPixmapPrivateKey = &exaPixmapPrivateKey;
|
||||
static int exaScreenPrivateKeyIndex;
|
||||
DevPrivateKey exaScreenPrivateKey = &exaScreenPrivateKeyIndex;
|
||||
static int exaPixmapPrivateKeyIndex;
|
||||
DevPrivateKey exaPixmapPrivateKey = &exaPixmapPrivateKeyIndex;
|
||||
|
||||
static _X_INLINE void*
|
||||
ExaGetPixmapAddress(PixmapPtr p)
|
||||
|
|
|
|||
Loading…
Reference in a new issue