59 lines
1.7 KiB
C
59 lines
1.7 KiB
C
|
// Copyright 2021 The Tint Authors.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
#ifndef SRC_VAL_VAL_H_
|
||
|
#define SRC_VAL_VAL_H_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
// Forward declarations
|
||
|
namespace tint {
|
||
|
class Program;
|
||
|
} // namespace tint
|
||
|
|
||
|
namespace tint {
|
||
|
namespace val {
|
||
|
|
||
|
/// The return structure of Validate()
|
||
|
struct Result {
|
||
|
/// True if validation passed
|
||
|
bool failed = false;
|
||
|
/// Output of DXC.
|
||
|
std::string output;
|
||
|
/// The generated source that was compiled
|
||
|
std::string source;
|
||
|
};
|
||
|
|
||
|
/// Hlsl attempts to compile the shader with DXC, verifying that the shader
|
||
|
/// compiles successfully.
|
||
|
/// @param dxc_path path to DXC
|
||
|
/// @param source the generated HLSL source
|
||
|
/// @param program the HLSL program
|
||
|
/// @return the result of the compile
|
||
|
Result Hlsl(const std::string& dxc_path,
|
||
|
const std::string& source,
|
||
|
Program* program);
|
||
|
|
||
|
/// Msl attempts to compile the shader with the Metal Shader Compiler,
|
||
|
/// verifying that the shader compiles successfully.
|
||
|
/// @param xcrun_path path to xcrun
|
||
|
/// @param source the generated MSL source
|
||
|
/// @return the result of the compile
|
||
|
Result Msl(const std::string& xcrun_path, const std::string& source);
|
||
|
|
||
|
} // namespace val
|
||
|
} // namespace tint
|
||
|
|
||
|
#endif // SRC_VAL_VAL_H_
|