2 * Copyright (c) 2012 Intel Corporation. All Rights Reserved.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19 * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 #ifndef _VA_DRICOMMON_H_
25 #define _VA_DRICOMMON_H_
31 #include <drm_sarea.h>
34 #include <va/va_backend.h>
35 #include <va/va_drmcommon.h>
38 #define XID unsigned int
43 /* Compatibility. Do not use for newly-written code. */
44 VA_NONE
= VA_DRM_AUTH_NONE
,
45 VA_DRI1
= VA_DRM_AUTH_DRI1
,
46 VA_DRI2
= VA_DRM_AUTH_DRI2
,
47 VA_DUMMY
= VA_DRM_AUTH_CUSTOM
53 unsigned int attachment
;
69 struct dri_drawable
*next
;
72 #define DRAWABLE_HASH_SZ 32
75 struct drm_state base
;
77 struct dri_drawable
*drawable_hash
[DRAWABLE_HASH_SZ
];
79 struct dri_drawable
*(*createDrawable
)(VADriverContextP ctx
, XID x_drawable
);
80 void (*destroyDrawable
)(VADriverContextP ctx
, struct dri_drawable
*dri_drawable
);
81 void (*swapBuffer
)(VADriverContextP ctx
, struct dri_drawable
*dri_drawable
);
82 union dri_buffer
*(*getRenderingBuffer
)(VADriverContextP ctx
, struct dri_drawable
*dri_drawable
);
83 void (*close
)(VADriverContextP ctx
);
87 Bool
isDRI2Connected(VADriverContextP ctx
, char **driver_name
);
88 void free_drawable(VADriverContextP ctx
, struct dri_drawable
* dri_drawable
);
89 void free_drawable_hashtable(VADriverContextP ctx
);
90 struct dri_drawable
*dri_get_drawable(VADriverContextP ctx
, XID drawable
);
91 void dri_swap_buffer(VADriverContextP ctx
, struct dri_drawable
*dri_drawable
);
92 union dri_buffer
*dri_get_rendering_buffer(VADriverContextP ctx
, struct dri_drawable
*dri_drawable
);
94 #endif /* _VA_DRICOMMON_H_ */