diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-07 08:42:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-07 08:42:10 -0400 |
commit | 69deb99a654846d6c94ee7fc0f1da818c5965e3e (patch) | |
tree | efe0c6f24adc6c005838a43cf8b6f7d0796fbaba /include | |
parent | d79f5780225d2416f3fff9dcebeac1d64110bb94 (diff) | |
parent | 632a7acb03f4c4b8d06fdf7f8d7839db27cde538 (diff) |
Merge pull request #10 from ascent12/edid
Filled out more wlr_output fields.
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/drm/drm.h | 1 | ||||
-rw-r--r-- | include/wlr/types.h | 7 |
2 files changed, 3 insertions, 5 deletions
diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h index 004f3a10..2d063adb 100644 --- a/include/backend/drm/drm.h +++ b/include/backend/drm/drm.h @@ -34,7 +34,6 @@ struct wlr_output_state { struct wlr_output *wlr_output; enum wlr_drm_output_state state; uint32_t connector; - char name[16]; struct { uint32_t dpms; diff --git a/include/wlr/types.h b/include/wlr/types.h index 4870b84c..02c2f087 100644 --- a/include/wlr/types.h +++ b/include/wlr/types.h @@ -22,11 +22,10 @@ struct wlr_output { struct wlr_output_state *state; uint32_t flags; - char *name; - char *make; - char *model; + char name[16]; + char make[48]; + char model[16]; uint32_t scale; - int32_t x, y; int32_t phys_width, phys_height; // mm int32_t subpixel; // enum wl_output_subpixel int32_t transform; // enum wl_output_transform |