blob: b11f04b8ce51564b94f0e118b28dff9a30cacc1f [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 "include/core/SkSpan.h"
#include <cstdint>
#include <string>
namespace SkSL {
void SPIRVtoHLSL(SkSpan<const uint32_t> spirv, std::string* hlsl);
} // namespace SkSL
#endif