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