blob: 5207546a676a639489d16b189ea29b277d9b96b3 [file] [log] [blame]
/*
* Copyright 2020 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_SPIRVTOHLSL
#define SKSL_SPIRVTOHLSL
#include <string>
namespace SkSL {
bool SPIRVtoHLSL(const std::string& spirv, std::string* hlsl);
} // namespace SkSL
#endif