// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 #include #include #include #include #include #include #if defined( tstring ) #undef tstring #endif #if defined( min ) #undef min #endif #if defined( max ) #undef max #endif class FrostInterface; class FrostVRenderObject : public VUtils::VRenderObject { public: FrostVRenderObject( FrostInterface* frost ); // From VRenderObject VUtils::VRenderInstance* newRenderInstance( INode* node, VUtils::VRayCore* vray, int renderID ); void deleteRenderInstance( VUtils::VRenderInstance* ri ); void frameBegin( TimeValue t, VUtils::VRayCore* vray ); private: FrostInterface* m_frost; };