xref: /aosp_15_r20/external/skia/src/sksl/codegen/SkSLCodeGenTypes.h (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1 /*
2  * Copyright 2024 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 SKSL_CODEGENTYPES
9 #define SKSL_CODEGENTYPES
10 
11 namespace SkSL {
12 
13 enum class PrettyPrint : bool {
14     kNo = false,
15     kYes = true,
16 };
17 
18 }  // namespace SkSL
19 
20 #endif
21