tool now validates converted MSL with a test compilation. Project build scripts now build dylib and framework in separate build directories to enable MoltenVKShaderConverter to link to static library instead of dynamic library. Final Package structure remains the same. In Debug build, copy dylib dSYM files to Package. Package/Latest directory now links relative to local Debug or Release directory. Add install option to Makefile. MoltenVKShaderConverter tool now validates converted MSL with a test compilation. Clean up various MSL conversion and compilation error logging. MVKCommandResourceFactory wrap Metal library compile with autorelease pool. Build ExternalDependencies with same symbol hiding as MoltenVK to suppress visibility warnings. Update What's New document.
54 lines
1.9 KiB
C++
54 lines
1.9 KiB
C++
/*
|
|
* OSSupport.h
|
|
*
|
|
* Copyright (c) 2014-2019 The Brenwill Workshop Ltd. (http://www.brenwill.com)
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace mvk {
|
|
|
|
/**
|
|
* Iterates through the directory at the specified path, which may be either a relative
|
|
* or absolute path, and calls the processFile(std::string filePath) member function
|
|
* on the fileProcessor for each file in the directory. If the isRecursive parameter
|
|
* is true, the iteration will include all files in all sub-directories as well.
|
|
*
|
|
* The processFile(std::string filePath) member function on the fileProcessor should
|
|
* return whether that file was successfully processed.
|
|
*
|
|
* Returns false if the directory could not be found or iterated, or if an error
|
|
* occurs with the conversion of any file. Returns true otherwise.
|
|
*/
|
|
template <typename FileProcessor>
|
|
bool iterateDirectory(const std::string& dirPath,
|
|
FileProcessor& fileProcessor,
|
|
bool isRecursive,
|
|
std::string& errMsg);
|
|
|
|
/**
|
|
* Attempts to compile the MSL source code and returns whether it was successful.
|
|
*
|
|
* If unsuccessful, the return value will be false and the errMsg will contain an
|
|
* error message. Otherwise the return value will be true and the errMsg will be empty.
|
|
*/
|
|
bool compile(const std::string& mslSourceCode, std::string& errMsg);
|
|
|
|
}
|