/src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/ |
amdgpu_dm_color.c | 49 * interface exposes CRTC degamma, CRTC CTM and CRTC regamma while our hardware 52 * Plane CTM -> Plane degamma -> Plane CTM -> Plane regamma -> Plane CTM 73 * Plane DGM Bypass -> Plane CTM Bypass -> Plane RGM Bypass -> ... 74 * CRTC DGM Bypass -> CRTC CTM Bypass -> CRTC RGM Bypass 163 * Converts a DRM CTM to a DC CSC float matrix. 166 static void __drm_ctm_to_dc_matrix(const struct drm_color_ctm *ctm, 187 /* gamut_remap_matrix[i] = ctm[i - floor(i/4)] */ 188 val = ctm->matrix[i - (i / 4)] 312 struct drm_color_ctm *ctm = NULL; local in function:amdgpu_dm_update_crtc_color_mgmt [all...] |
/src/libexec/atrun/ |
atrun.c | 390 unsigned long ctm; local in function:main 483 &ctm) != 3) 486 run_time = (time_t) ctm * 60;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/ |
nouveau_dispnv50_wndw.c | 383 if (wndw->func->csc && asyh->state.ctm) { 384 const struct drm_color_ctm *ctm = asyh->state.ctm->data; local in function:nv50_wndw_atomic_check_lut 385 wndw->func->csc(wndw, asyw, ctm);
|
/src/usr.bin/at/ |
at.c | 431 unsigned long ctm; local in function:list_jobs 460 if (sscanf(dirent->d_name, "%c%5x%8lx", &queue, &jobno, &ctm) != 3) 466 runtimer = 60 * (time_t)ctm; 506 unsigned long ctm; local in function:process_jobs 528 if (sscanf(dirent->d_name, "%c%5x%8lx", &queue, &jobno, &ctm) !=3)
|
/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_crtc.h | 173 * (@gamma_lut, @degamma_lut or @ctm). Used by the atomic helpers and 261 * color conversion matrix @ctm. See drm_crtc_enable_color_mgmt(). The 267 * @ctm: 272 struct drm_property_blob *ctm; member in struct:drm_crtc_state 278 * matrix @ctm. See drm_crtc_enable_color_mgmt(). The blob (if not
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_color.c | 66 * Extract the CSC coefficient from a CTM coefficient (in U32.32 fixed point 71 * of the CTM coefficient and we write the value from bit 3. We also round the 126 !crtc_state->hw.ctm && 227 const struct drm_color_ctm *ctm = crtc_state->hw.ctm->data; local in function:ilk_csc_convert_ctm 233 input = ctm_mult_by_limited(temp, ctm->matrix); 235 input = ctm->matrix; 282 if (crtc_state->hw.ctm) { 320 if (crtc_state->hw.ctm) { 350 if (crtc_state->hw.ctm) { 351 const struct drm_color_ctm *ctm = crtc_state->hw.ctm->data; local in function:cherryview_load_csc_matrix [all...] |
intel_display_types.h | 807 struct drm_property_blob *degamma_lut, *gamma_lut, *ctm; member in struct:intel_crtc_state::__anonde7c4d450c08
|