Loading...
Searching...
No Matches
renderer.h
1//
2// Copyright 2025 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef PXR_IMAGING_HD_RENDERER_H
8#define PXR_IMAGING_HD_RENDERER_H
9
10#include "pxr/pxr.h"
11#include "pxr/imaging/hd/api.h"
12
13PXR_NAMESPACE_OPEN_SCOPE
14
27{
28public:
29 // Stub class.
30 //
31 // TODO: Add API to render.
32 virtual ~HdRenderer() = 0;
33};
34
35PXR_NAMESPACE_CLOSE_SCOPE
36
37#endif
A Hydra renderer.
Definition: renderer.h:27