123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*************************************************************************
- * Copyright (c) 2014 AT&T Intellectual Property
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: Details at https://graphviz.org
- *************************************************************************/
- #pragma once
- #include <stddef.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef GVDLL
- #ifdef LAB_GAMUT_EXPORTS
- #define LAB_GAMUT_API __declspec(dllexport)
- #else
- #define LAB_GAMUT_API __declspec(dllimport)
- #endif
- #endif
- #ifndef LAB_GAMUT_API
- #define LAB_GAMUT_API /* nothing */
- #endif
- /** lookup table for the visible spectrum of the CIELAB color space
- *
- * This table is entries of 4-tuples of the form (L*, a*, b* lower bound,
- * b* upper bound). A plain lookup table and/or the use of structs is avoided to
- * save memory during compilation. Without this, MSVC ~2019 exhausts memory in
- * CI.
- *
- * More information about CIELAB:
- * https://en.wikipedia.org/wiki/CIELAB_color_space
- */
- LAB_GAMUT_API extern const signed char lab_gamut_data[];
- LAB_GAMUT_API extern const size_t lab_gamut_data_size;
- #undef LAB_GAMUT_API
- #ifdef __cplusplus
- }
- #endif
|