// // Copyright 2016 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trademarks. This License does not grant permission to use the trade // names, trademarks, service marks, or product names of the Licensor // and its affiliates, except as required to comply with Section 4(c) of // the License and to reproduce the content of the NOTICE file. // // You may obtain a copy of the Apache License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the Apache License with the above modification is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the Apache License for the specific // language governing permissions and limitations under the Apache License. // #ifndef PXR_IMAGING_HD_UNIT_TEST_HELPER_H #define PXR_IMAGING_HD_UNIT_TEST_HELPER_H #include "pxr/pxr.h" #include "pxr/imaging/hd/engine.h" #include "pxr/imaging/hd/renderPass.h" #include "pxr/imaging/hd/renderPassState.h" #include "pxr/imaging/hd/unitTestDelegate.h" #include "pxr/imaging/hd/unitTestNullRenderDelegate.h" #include "pxr/base/gf/vec4d.h" #include "pxr/base/gf/matrix4d.h" #include PXR_NAMESPACE_OPEN_SCOPE /// \class Hd_TestDriver /// /// A unit test driver that exercises the core engine. /// /// \note This test driver does NOT assume OpenGL is available; in the even /// that is is not available, all OpenGL calls become no-ops, but all other work /// is performed as usual. /// class Hd_TestDriver final { public: Hd_TestDriver(); Hd_TestDriver(HdReprSelector const &reprToken); ~Hd_TestDriver(); /// Draw void Draw(bool withGuides=false); /// Draw with external renderPass void Draw(HdRenderPassSharedPtr const &renderPass, bool withGuides); /// Set camera to renderpass void SetCamera(GfMatrix4d const &modelViewMatrix, GfMatrix4d const &projectionMatrix, GfVec4d const &viewport); /// Set cull style void SetCullStyle(HdCullStyle cullStyle); /// Returns the renderpass HdRenderPassSharedPtr const &GetRenderPass(); /// Returns the renderPassState HdRenderPassStateSharedPtr const &GetRenderPassState() const { return _renderPassState; } /// Returns the UnitTest delegate HdUnitTestDelegate& GetDelegate() { return *_sceneDelegate; } /// Switch repr void SetRepr(HdReprSelector const &reprSelector); private: void _Init(HdReprSelector const &reprSelector); HdEngine _engine; Hd_UnitTestNullRenderDelegate _renderDelegate; HdRenderIndex *_renderIndex; HdUnitTestDelegate *_sceneDelegate; SdfPath _cameraId; HdRenderPassSharedPtr _renderPass; HdRenderPassStateSharedPtr _renderPassState; HdRprimCollection _collection; }; PXR_NAMESPACE_CLOSE_SCOPE #endif // PXR_IMAGING_HD_UNIT_TEST_HELPER_H