mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-02-14 03:13:03 +00:00
19 lines
765 B
C++
19 lines
765 B
C++
#pragma once
|
|
|
|
#include "Asset/AssetCreationContext.h"
|
|
#include "CommonShaderArgCreator.h"
|
|
#include "Techset/CommonTechnique.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace techset
|
|
{
|
|
std::unique_ptr<CommonTechnique> LoadCommonTechnique(const std::string& techniqueName,
|
|
const CommonCodeSourceInfos& codeSourceInfos,
|
|
const CommonStreamRoutingInfos& routingInfos,
|
|
CommonShaderArgCreator& commonShaderArgCreator,
|
|
ISearchPath& searchPath,
|
|
bool& failure);
|
|
} // namespace techset
|