forked from SAPikachu/flash3kyuu_deband
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpl_dispatch.cpp
More file actions
52 lines (42 loc) · 1.78 KB
/
impl_dispatch.cpp
File metadata and controls
52 lines (42 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include "stdafx.h"
#include "core.h"
#define IMPL_DISPATCH_IMPORT_DECLARATION
#include "impl_dispatch_decl.h"
const process_plane_impl_t* process_plane_impl_high_precision_no_dithering[] = {
process_plane_impl_c_high_no_dithering,
process_plane_impl_sse2_high_no_dithering,
process_plane_impl_ssse3_high_no_dithering,
process_plane_impl_sse4_high_no_dithering
};
const process_plane_impl_t* process_plane_impl_high_precision_ordered_dithering[] = {
process_plane_impl_c_high_ordered_dithering,
process_plane_impl_sse2_high_ordered_dithering,
process_plane_impl_ssse3_high_ordered_dithering,
process_plane_impl_sse4_high_ordered_dithering
};
const process_plane_impl_t* process_plane_impl_high_precision_floyd_steinberg_dithering[] = {
process_plane_impl_c_high_floyd_steinberg_dithering,
process_plane_impl_sse2_high_floyd_steinberg_dithering,
process_plane_impl_ssse3_high_floyd_steinberg_dithering,
process_plane_impl_sse4_high_floyd_steinberg_dithering
};
const process_plane_impl_t* process_plane_impl_16bit_stacked[] = {
process_plane_impl_c_16bit_stacked,
process_plane_impl_sse2_16bit_stacked,
process_plane_impl_ssse3_16bit_stacked,
process_plane_impl_sse4_16bit_stacked
};
const process_plane_impl_t* process_plane_impl_16bit_interleaved[] = {
process_plane_impl_c_16bit_interleaved,
process_plane_impl_sse2_16bit_interleaved,
process_plane_impl_ssse3_16bit_interleaved,
process_plane_impl_sse4_16bit_interleaved
};
const process_plane_impl_t** process_plane_impls[] = {
nullptr, // process_plane_impl_low_precision has been removed,
process_plane_impl_high_precision_no_dithering,
process_plane_impl_high_precision_ordered_dithering,
process_plane_impl_high_precision_floyd_steinberg_dithering,
process_plane_impl_16bit_stacked,
process_plane_impl_16bit_interleaved
};