All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
unitTestHelper.h
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef PXR_IMAGING_HD_UNIT_TEST_HELPER_H
25 #define PXR_IMAGING_HD_UNIT_TEST_HELPER_H
26 
27 #include "pxr/pxr.h"
28 #include "pxr/imaging/hd/engine.h"
29 #include "pxr/imaging/hd/renderPass.h"
30 #include "pxr/imaging/hd/renderPassState.h"
31 #include "pxr/imaging/hd/unitTestDelegate.h"
32 #include "pxr/imaging/hd/unitTestNullRenderDelegate.h"
33 
34 #include "pxr/base/gf/vec4d.h"
35 #include "pxr/base/gf/matrix4d.h"
36 
37 #include <vector>
38 
39 PXR_NAMESPACE_OPEN_SCOPE
40 
41 
50 class Hd_TestDriver final {
51 public:
52  Hd_TestDriver();
53  Hd_TestDriver(HdReprSelector const &reprToken);
54  ~Hd_TestDriver();
55 
57  void Draw(bool withGuides=false);
58 
60  void Draw(HdRenderPassSharedPtr const &renderPass, bool withGuides);
61 
63  void SetCamera(GfMatrix4d const &modelViewMatrix,
64  GfMatrix4d const &projectionMatrix,
65  GfVec4d const &viewport);
66 
68  void SetCullStyle(HdCullStyle cullStyle);
69 
71  HdRenderPassSharedPtr const &GetRenderPass();
72 
74  HdRenderPassStateSharedPtr const &GetRenderPassState() const {
75  return _renderPassState;
76  }
77 
79  HdUnitTestDelegate& GetDelegate() { return *_sceneDelegate; }
80 
82  void SetRepr(HdReprSelector const &reprSelector);
83 
84 private:
85 
86  void _Init(HdReprSelector const &reprSelector);
87 
88  HdEngine _engine;
89  Hd_UnitTestNullRenderDelegate _renderDelegate;
90  HdRenderIndex *_renderIndex;
91  HdUnitTestDelegate *_sceneDelegate;
92  SdfPath _cameraId;
93  HdRenderPassSharedPtr _renderPass;
94  HdRenderPassStateSharedPtr _renderPassState;
95  HdRprimCollection _collection;
96 };
97 
98 PXR_NAMESPACE_CLOSE_SCOPE
99 
100 #endif // PXR_IMAGING_HD_UNIT_TEST_HELPER_H
The Hydra render index is a flattened representation of the client scene graph, which may be composed...
Definition: renderIndex.h:116
Basic type for a vector of 4 double components.
Definition: vec4d.h:63
Stores a 4x4 matrix of double elements.
Definition: matrix4d.h:88
The application-facing entry point top-level entry point for accessing Hydra.
Definition: engine.h:48
A named, semantic collection of objects.
A path value used to locate objects in layers or scenegraphs.
Definition: path.h:288
Describes one or more authored display representations for an rprim.
Definition: repr.h:48
A simple delegate class for unit test driver.