• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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