mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-27 07:05:03 +00:00
14 lines
390 B
C++
14 lines
390 B
C++
//
|
|
// Copyright Contributors to the MaterialX Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include <MaterialXRenderSlang/TextureBaker.h>
|
|
|
|
MATERIALX_NAMESPACE_BEGIN
|
|
TextureBakerSlang::TextureBakerSlang(unsigned int width, unsigned int height, Image::BaseType baseType) :
|
|
TextureBaker<SlangRenderer, SlangShaderGenerator>(width, height, baseType, true)
|
|
{
|
|
}
|
|
MATERIALX_NAMESPACE_END
|