blob: 459adbd4343d37a2c79abbda074f5b9e167bfe80 [file] [log] [blame]
Brian Osmanc0243912020-02-19 15:35:26 -05001/*
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 Nicholasdaed2592021-03-04 14:30:25 -050011#include "include/private/SkSLString.h"
Brian Osmanc0243912020-02-19 15:35:26 -050012
13namespace SkSL {
14
15bool SPIRVtoHLSL(const String& spirv, String* hlsl);
16
John Stilesa6841be2020-08-06 14:11:56 -040017} // namespace SkSL
Brian Osmanc0243912020-02-19 15:35:26 -050018
19#endif