xref: /aosp_15_r20/external/skia/src/core/SkOptsTargets.h (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1 /*
2  * Copyright 2023 Google LLC
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef SkOptsTargets_DEFINED
9 #define SkOptsTargets_DEFINED
10 
11 #define SK_OPTS_TARGET_DEFAULT 0x00
12 #define SK_OPTS_TARGET_SSSE3   0x01
13 #define SK_OPTS_TARGET_AVX     0x02
14 #define SK_OPTS_TARGET_HSW     0x04
15 
16 #define SK_OPTS_TARGET_LASX    0x08
17 
18 #endif
19