aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-x-vidmode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamma-x-vidmode.c')
-rw-r--r--src/gamma-x-vidmode.c133
1 files changed, 0 insertions, 133 deletions
diff --git a/src/gamma-x-vidmode.c b/src/gamma-x-vidmode.c
index aa9a75d..2ece071 100644
--- a/src/gamma-x-vidmode.c
+++ b/src/gamma-x-vidmode.c
@@ -22,7 +22,6 @@
#include "gamma-x-vidmode.h"
#include "libgamma-error.h"
-#include "gamma-helper.h"
#include <errno.h>
@@ -218,135 +217,3 @@ int libgamma_x_vidmode_crtc_set_gamma_ramps(libgamma_crtc_state_t* restrict this
{
}
-
-
-/**
- * Get current the gamma ramps for a CRTC, 32-bit gamma-depth version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to fill with the current values
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_get_gamma_ramps32(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_ramps32_t* restrict ramps)
-{
- return libgamma_translated_ramp_get(this, ramps, 32, 16,
- libgamma_x_vidmode_crtc_get_gamma_ramps);
-}
-
-
-/**
- * Set the gamma ramps for a CRTC, 32-bit gamma-depth version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to apply
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_set_gamma_ramps32(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_ramps32_t ramps)
-{
- return libgamma_translated_ramp_set(this, ramps, 32, 16,
- libgamma_x_vidmode_crtc_set_gamma_ramps);
-}
-
-
-
-/**
- * Get current the gamma ramps for a CRTC, 64-bit gamma-depth version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to fill with the current values
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_get_gamma_ramps64(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_ramps64_t* restrict ramps)
-{
- return libgamma_translated_ramp_get(this, ramps, 64, 16,
- libgamma_x_vidmode_crtc_get_gamma_ramps);
-}
-
-
-/**
- * Set the gamma ramps for a CRTC, 64-bit gamma-depth version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to apply
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_set_gamma_ramps64(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_ramps64_t ramps)
-{
- return libgamma_translated_ramp_set(this, ramps, 64, 16,
- libgamma_x_vidmode_crtc_set_gamma_ramps);
-}
-
-
-
-/**
- * Get current the gamma ramps for a CRTC, `float` version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to fill with the current values
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_get_gamma_rampsf(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_rampsf_t* restrict ramps)
-{
- return libgamma_translated_ramp_get(this, ramps, -1, 16,
- libgamma_x_vidmode_crtc_get_gamma_ramps);
-}
-
-
-/**
- * Set the gamma ramps for a CRTC, `float` version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to apply
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_set_gamma_rampsf(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_rampsf_t ramps)
-{
- return libgamma_translated_ramp_set(this, ramps, -1, 16,
- libgamma_x_vidmode_crtc_set_gamma_ramps);
-}
-
-
-
-/**
- * Get current the gamma ramps for a CRTC, `double` version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to fill with the current values
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_get_gamma_rampsd(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_rampsd_t* restrict ramps)
-{
- return libgamma_translated_ramp_get(this, ramps, -2, 16,
- libgamma_x_vidmode_crtc_get_gamma_ramps);
-}
-
-
-/**
- * Set the gamma ramps for a CRTC, `double` version
- *
- * @param this The CRTC state
- * @param ramps The gamma ramps to apply
- * @return Zero on success, otherwise (negative) the value of an
- * error identifier provided by this library
- */
-int libgamma_x_vidmode_crtc_set_gamma_rampsd(libgamma_crtc_state_t* restrict this,
- libgamma_gamma_rampsd_t ramps)
-{
- return libgamma_translated_ramp_set(this, ramps, -2, 16,
- libgamma_x_vidmode_crtc_set_gamma_ramps);
-}
-