Blender V4.3
BLI_smaa_textures.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2013 Jorge Jimenez <jorge@iryoku.com>
2 * SPDX-FileCopyrightText: 2013 Jose I. Echevarria <joseignacioechevarria@gmail.com>
3 * SPDX-FileCopyrightText: 2013 Belen Masia <bmasia@unizar.es>
4 * SPDX-FileCopyrightText: 2013 Fernando Navarro <fernandn@microsoft.com>
5 * SPDX-FileCopyrightText: 2013 Diego Gutierrez <diegog@unizar.es>
6 *
7 * SPDX-License-Identifier: MIT */
8
9#pragma once
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#define AREATEX_WIDTH 160
16#define AREATEX_HEIGHT 560
17#define AREATEX_PITCH (AREATEX_WIDTH * 2)
18#define AREATEX_SIZE (AREATEX_HEIGHT * AREATEX_PITCH)
19
25extern const unsigned char areaTexBytes[];
26
27#define SEARCHTEX_WIDTH 64
28#define SEARCHTEX_HEIGHT 16
29#define SEARCHTEX_PITCH SEARCHTEX_WIDTH
30#define SEARCHTEX_SIZE (SEARCHTEX_HEIGHT * SEARCHTEX_PITCH)
31
37extern const unsigned char searchTexBytes[];
38
39#ifdef __cplusplus
40}
41#endif
const unsigned char searchTexBytes[]
const unsigned char areaTexBytes[]