Message ID | 1479117566-17709-7-git-send-email-gustavo@padovan.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, Nov 14, 2016 at 06:59:18PM +0900, Gustavo Padovan wrote: > From: Gustavo Padovan <gustavo.padovan@collabora.co.uk> > > Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> gtkdoc for anything exported would always be nice ... -Daniel > --- > lib/igt_kms.c | 6 +++--- > lib/igt_kms.h | 5 +++++ > 2 files changed, 8 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index aa9fd16..8aaff5b 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -153,7 +153,7 @@ const unsigned char* igt_kms_get_base_edid(void) > #define EDID_NAME alt_edid > #include "igt_edid_template.h" > > -static const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { > +const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { > "SRC_X", > "SRC_Y", > "SRC_W", > @@ -168,7 +168,7 @@ static const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { > "rotation" > }; > > -static const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { > +const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { > "background_color", > "CTM", > "DEGAMMA_LUT", > @@ -177,7 +177,7 @@ static const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { > "ACTIVE" > }; > > -static const char *igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { > +const char *igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { > "scaling mode", > "CRTC_ID" > }; > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 6422adc..ae2b505 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -113,12 +113,16 @@ enum igt_atomic_crtc_properties { > IGT_NUM_CRTC_PROPS > }; > > +extern const char *igt_crtc_prop_names[]; > + > enum igt_atomic_connector_properties { > IGT_CONNECTOR_SCALING_MODE = 0, > IGT_CONNECTOR_CRTC_ID, > IGT_NUM_CONNECTOR_PROPS > }; > > +extern const char *igt_connector_prop_names[]; > + > struct kmstest_connector_config { > drmModeCrtc *crtc; > drmModeConnector *connector; > @@ -214,6 +218,7 @@ enum igt_atomic_plane_properties { > IGT_NUM_PLANE_PROPS > }; > > +extern const char *igt_plane_prop_names[]; > > typedef struct igt_display igt_display_t; > typedef struct igt_pipe igt_pipe_t; > -- > 2.5.5 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx
diff --git a/lib/igt_kms.c b/lib/igt_kms.c index aa9fd16..8aaff5b 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -153,7 +153,7 @@ const unsigned char* igt_kms_get_base_edid(void) #define EDID_NAME alt_edid #include "igt_edid_template.h" -static const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { +const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { "SRC_X", "SRC_Y", "SRC_W", @@ -168,7 +168,7 @@ static const char *igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { "rotation" }; -static const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { +const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { "background_color", "CTM", "DEGAMMA_LUT", @@ -177,7 +177,7 @@ static const char *igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { "ACTIVE" }; -static const char *igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { +const char *igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { "scaling mode", "CRTC_ID" }; diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 6422adc..ae2b505 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -113,12 +113,16 @@ enum igt_atomic_crtc_properties { IGT_NUM_CRTC_PROPS }; +extern const char *igt_crtc_prop_names[]; + enum igt_atomic_connector_properties { IGT_CONNECTOR_SCALING_MODE = 0, IGT_CONNECTOR_CRTC_ID, IGT_NUM_CONNECTOR_PROPS }; +extern const char *igt_connector_prop_names[]; + struct kmstest_connector_config { drmModeCrtc *crtc; drmModeConnector *connector; @@ -214,6 +218,7 @@ enum igt_atomic_plane_properties { IGT_NUM_PLANE_PROPS }; +extern const char *igt_plane_prop_names[]; typedef struct igt_display igt_display_t; typedef struct igt_pipe igt_pipe_t;