diff options
Diffstat (limited to 'gsk/gskenums.h')
-rw-r--r-- | gsk/gskenums.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/gsk/gskenums.h b/gsk/gskenums.h new file mode 100644 index 0000000000..b831d4903e --- /dev/null +++ b/gsk/gskenums.h @@ -0,0 +1,46 @@ +/* GSK - The GTK Scene Kit + * Copyright 2016 Endless + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __GSK_ENUMS_H__ +#define __GSK_ENUMS_H__ + +#if !defined (__GSK_H_INSIDE__) && !defined (GSK_COMPILATION) +#error "Only <gsk/gsk.h> can be included directly." +#endif + +/** + * GskScalingFilter: + * @GSK_SCALING_FILTER_LINEAR: linear interpolation filter + * @GSK_SCALING_FILTER_NEAREST: nearest neighbor interpolation filter + * @GSK_SCALING_FILTER_TRILINEAR: linear interpolation along each axis, + * plus mipmap generation, with linear interpolation along the mipmap + * levels + * + * The filters used when scaling texture data. + * + * The actual implementation of each filter is deferred to the + * rendering pipeline. + * + * Since: 3.22 + */ +typedef enum { + GSK_SCALING_FILTER_LINEAR, + GSK_SCALING_FILTER_NEAREST, + GSK_SCALING_FILTER_TRILINEAR +} GskScalingFilter; + +#endif /* __GSK_TYPES_H__ */ |