2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-25 14:03:03 +00:00

fix: properly dump iw5 vertex sampler

This commit is contained in:
Jan Laupetin
2026-03-19 19:26:33 +01:00
parent 2ba00acedd
commit b98ae1fdc8

View File

@@ -213,6 +213,9 @@ namespace
return techset::CommonShaderArg(commonArgumentTypes[arg.type], destination, value); return techset::CommonShaderArg(commonArgumentTypes[arg.type], destination, value);
} }
#if defined(FEATURE_IW5)
case MTL_ARG_MATERIAL_VERTEX_SAMPLER:
#endif
case MTL_ARG_MATERIAL_PIXEL_SAMPLER: case MTL_ARG_MATERIAL_PIXEL_SAMPLER:
{ {
const techset::CommonShaderArgValue value{ const techset::CommonShaderArgValue value{
@@ -235,7 +238,6 @@ namespace
return techset::CommonShaderArg(commonArgumentTypes[arg.type], destination, value); return techset::CommonShaderArg(commonArgumentTypes[arg.type], destination, value);
} }
default:
case MTL_ARG_LITERAL_VERTEX_CONST: case MTL_ARG_LITERAL_VERTEX_CONST:
case MTL_ARG_LITERAL_PIXEL_CONST: case MTL_ARG_LITERAL_PIXEL_CONST:
{ {
@@ -265,6 +267,10 @@ namespace
return techset::CommonShaderArg(commonArgumentTypes[arg.type], destination, value); return techset::CommonShaderArg(commonArgumentTypes[arg.type], destination, value);
} }
default:
assert(false);
return techset::CommonShaderArg();
} }
} }