Brian Osman | c024391 | 2020-02-19 15:35:26 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2020 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_SPIRVTOHLSL |
| 9 | #define SKSL_SPIRVTOHLSL |
| 10 | |
Ethan Nicholas | daed259 | 2021-03-04 14:30:25 -0500 | [diff] [blame] | 11 | #include "include/private/SkSLString.h" |
Brian Osman | c024391 | 2020-02-19 15:35:26 -0500 | [diff] [blame] | 12 | |
| 13 | namespace SkSL { |
| 14 | |
| 15 | bool SPIRVtoHLSL(const String& spirv, String* hlsl); |
| 16 | |
John Stiles | a6841be | 2020-08-06 14:11:56 -0400 | [diff] [blame] | 17 | } // namespace SkSL |
Brian Osman | c024391 | 2020-02-19 15:35:26 -0500 | [diff] [blame] | 18 | |
| 19 | #endif |