Loading...
Searching...
No Matches
hgiConversions.h
1//
2// Copyright 2020 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_HDX_HGI_CONVERSIONS_H
8#define PXR_IMAGING_HDX_HGI_CONVERSIONS_H
9
10#include "pxr/imaging/hdx/api.h"
11#include "pxr/imaging/hd/types.h"
12#include "pxr/imaging/hgi/types.h"
13
14PXR_NAMESPACE_OPEN_SCOPE
15
22{
23public:
24
25 HDX_API
26 static HgiFormat GetHgiFormat(HdFormat hdFormat);
27
28 HDX_API
29 static HdFormat GetHdFormat(HgiFormat hgiFormat);
30};
31
32
33PXR_NAMESPACE_CLOSE_SCOPE
34
35#endif
Converts from Hd types to Hgi types.