aboutsummaryrefslogtreecommitdiff
path: root/libdrm
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@tungstengraphics.com>2008-11-12 18:49:46 +0100
committerJakob Bornecrantz <jakob@tungstengraphics.com>2008-11-12 18:50:05 +0100
commitea849d7ca6aaedd3aba6ec7239f01426521d8604 (patch)
treea7333e76edc84fa7a35ee4f97b0345bcf9558f75 /libdrm
parent1ead45c8f02e7c51cfe977383726d20479385688 (diff)
mode: Unify userspace API to uint_t
Diffstat (limited to 'libdrm')
-rw-r--r--libdrm/xf86drmMode.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/libdrm/xf86drmMode.h b/libdrm/xf86drmMode.h
index ee45717b..b68d1469 100644
--- a/libdrm/xf86drmMode.h
+++ b/libdrm/xf86drmMode.h
@@ -77,8 +77,8 @@ typedef struct _drmModePropertyBlob {
} drmModePropertyBlobRes, *drmModePropertyBlobPtr;
typedef struct _drmModeProperty {
- unsigned int prop_id;
- unsigned int flags;
+ uint32_t prop_id;
+ uint32_t flags;
char name[DRM_PROP_NAME_LEN];
int count_values;
uint64_t *values; // store the blob lengths
@@ -89,8 +89,8 @@ typedef struct _drmModeProperty {
} drmModePropertyRes, *drmModePropertyPtr;
typedef struct _drmModeCrtc {
- unsigned int crtc_id;
- unsigned int buffer_id; /**< FB id to connect to 0 = disconnect */
+ uint32_t crtc_id;
+ uint32_t buffer_id; /**< FB id to connect to 0 = disconnect */
uint32_t x, y; /**< Position on the framebuffer */
uint32_t width, height;
@@ -102,9 +102,9 @@ typedef struct _drmModeCrtc {
} drmModeCrtc, *drmModeCrtcPtr;
typedef struct _drmModeEncoder {
- unsigned int encoder_id;
- unsigned int encoder_type;
- unsigned int crtc_id;
+ uint32_t encoder_id;
+ uint32_t encoder_type;
+ uint32_t crtc_id;
uint32_t possible_crtcs;
uint32_t possible_clones;
} drmModeEncoder, *drmModeEncoderPtr;
@@ -125,10 +125,10 @@ typedef enum {
} drmModeSubPixel;
typedef struct _drmModeConnector {
- unsigned int connector_id;
- unsigned int encoder_id; /**< Encoder currently connected to */
- unsigned int connector_type;
- unsigned int connector_type_id;
+ uint32_t connector_id;
+ uint32_t encoder_id; /**< Encoder currently connected to */
+ uint32_t connector_type;
+ uint32_t connector_type_id;
drmModeConnection connection;
uint32_t mmWidth, mmHeight; /**< HxW in millimeters */
drmModeSubPixel subpixel;