summaryrefslogtreecommitdiff
path: root/linux-core/drm_crtc.h
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@tungstengraphics.com>2008-05-08 15:00:18 +0200
committerJakob Bornecrantz <jakob@tungstengraphics.com>2008-05-08 15:03:57 +0200
commitba36d54ad4a3ea52b338d55ca19a864283e7c9ce (patch)
tree06b0c827d650e6650e861a30f24f300548a1e109 /linux-core/drm_crtc.h
parent4466fea7bab2af5c1e25947af474d0ae69df1ffd (diff)
drm: Made set_config use drm_mode_set as a argument
Diffstat (limited to 'linux-core/drm_crtc.h')
-rw-r--r--linux-core/drm_crtc.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-core/drm_crtc.h b/linux-core/drm_crtc.h
index 64e7e519..abe8f3f3 100644
--- a/linux-core/drm_crtc.h
+++ b/linux-core/drm_crtc.h
@@ -475,11 +475,17 @@ struct drm_output {
*
* Represents a single crtc the outputs that it drives with what mode
* and from which framebuffer it scans out from.
+ *
+ * This is used to set modes.
*/
struct drm_mode_set
{
struct drm_framebuffer *fb;
struct drm_crtc *crtc;
+ struct drm_display_mode *mode;
+
+ uint32_t x;
+ uint32_t y;
struct drm_output **outputs;
size_t num_outputs;