android_kernel_modules_leno.../intel_media/display/pnw/drv/mdfld_csc.h

39 lines
1.6 KiB
C

/*
* Copyright © 2010 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Authors:
* Jim Liu <jim.liu@intel.com>
*/
#ifndef _MDFLD_CSC_H_
#define _MDFLD_CSC_H_
/* chromaticity value for sRGB color space */
/* int chrom1[8] = {6400, 3300, 3000, 6000, 1500, 600, 3127, 3290}; */
/* chromaticity value for Adobe Wide Gamut RGB color space */
/* int chrom2[8] = {7347, 2653, 1152, 8264, 1566, 177, 3457, 3585}; */
void csc (struct drm_device* dev, int *chrom1, int *chrom2, int pipe);
void csc_program_DC (struct drm_device* dev, int64_t *csc, int pipe);
#endif