mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-23 22:37:07 +00:00
17 lines
651 B
C++
17 lines
651 B
C++
#pragma once
|
|
|
|
#include "Dumping/AssetDumpingContext.h"
|
|
#include "Material/AbstractMaterialConstantZoneState.h"
|
|
#include "Techset/CommonTechnique.h"
|
|
|
|
namespace techset
|
|
{
|
|
void DumpCommonTechnique(const AssetDumpingContext& context,
|
|
const CommonTechnique& technique,
|
|
DxVersion dxVersion,
|
|
const CommonCodeSourceInfos& codeSourceInfos,
|
|
const CommonStreamRoutingInfos& routingInfos,
|
|
const AbstractMaterialConstantZoneState& constantZoneState,
|
|
bool debug);
|
|
} // namespace techset
|