aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/libgamma-method.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-08-28 15:18:38 +0200
committerMattias Andrée <maandree@operamail.com>2014-08-28 15:18:38 +0200
commit9ccc965782253ea4847ed784b9c6cb5c5b1f8ef5 (patch)
tree32386de8407b95650998dfbbf1350094d2663711 /src/lib/libgamma-method.h
parentm doc (diff)
downloadlibgamma-9ccc965782253ea4847ed784b9c6cb5c5b1f8ef5.tar.gz
libgamma-9ccc965782253ea4847ed784b9c6cb5c5b1f8ef5.tar.bz2
libgamma-9ccc965782253ea4847ed784b9c6cb5c5b1f8ef5.tar.xz
ramps => ramps16
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/lib/libgamma-method.h')
-rw-r--r--src/lib/libgamma-method.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libgamma-method.h b/src/lib/libgamma-method.h
index 5d2ae32..b549a5d 100644
--- a/src/lib/libgamma-method.h
+++ b/src/lib/libgamma-method.h
@@ -864,7 +864,7 @@ typedef struct libgamma_crtc_information
/**
* Gamma ramp structure for 16-bit gamma ramps.
*/
-typedef struct libgamma_gamma_ramps
+typedef struct libgamma_gamma_ramps16
{
/**
* The size of `red`.
@@ -896,7 +896,7 @@ typedef struct libgamma_gamma_ramps
*/
uint16_t* blue;
-} libgamma_gamma_ramps_t;
+} libgamma_gamma_ramps16_t;
/**
@@ -1062,7 +1062,7 @@ typedef struct libgamma_gamma_rampsd
* @param this The gamma ramps.
* @return Zero on success, -1 on allocation error, `errno` will be set accordingly.
*/
-int libgamma_gamma_ramps_initialise(libgamma_gamma_ramps_t* restrict this);
+int libgamma_gamma_ramps16_initialise(libgamma_gamma_ramps16_t* restrict this);
/**
* Release resources that are held by a gamma ramp strcuture that
@@ -1071,7 +1071,7 @@ int libgamma_gamma_ramps_initialise(libgamma_gamma_ramps_t* restrict this);
*
* @param this The gamma ramps.
*/
-void libgamma_gamma_ramps_destroy(libgamma_gamma_ramps_t* restrict this);
+void libgamma_gamma_ramps16_destroy(libgamma_gamma_ramps16_t* restrict this);
/**
* Release resources that are held by a gamma ramp strcuture that
@@ -1081,7 +1081,7 @@ void libgamma_gamma_ramps_destroy(libgamma_gamma_ramps_t* restrict this);
*
* @param this The gamma ramps.
*/
-void libgamma_gamma_ramps_free(libgamma_gamma_ramps_t* restrict this);
+void libgamma_gamma_ramps16_free(libgamma_gamma_ramps16_t* restrict this);
/**