24 lines
605 B
Plaintext
24 lines
605 B
Plaintext
//
|
|
// Copyright Contributors to the MaterialX Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include <MaterialXRenderMsl/TextureBaker.h>
|
|
|
|
#include <MaterialXRender/OiioImageLoader.h>
|
|
#include <MaterialXRender/StbImageLoader.h>
|
|
#include <MaterialXRender/Util.h>
|
|
|
|
#include <MaterialXGenShader/DefaultColorManagementSystem.h>
|
|
|
|
#include <MaterialXFormat/XmlIo.h>
|
|
|
|
MATERIALX_NAMESPACE_BEGIN
|
|
|
|
TextureBakerMsl::TextureBakerMsl(unsigned int width, unsigned int height, Image::BaseType baseType) :
|
|
TextureBaker<MslRenderer, MslShaderGenerator>(width, height, baseType, false)
|
|
{
|
|
}
|
|
|
|
MATERIALX_NAMESPACE_END
|