Loading...
Searching...
No Matches
tokens.h
Go to the documentation of this file.
1//
2// Copyright 2024 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_GEOM_UTIL_TOKENS_H
8#define PXR_IMAGING_GEOM_UTIL_TOKENS_H
9
11
12#include "pxr/pxr.h"
13#include "pxr/imaging/geomUtil/api.h"
15
16PXR_NAMESPACE_OPEN_SCOPE
17
18
19#define GEOMUTIL_INTERPOLATION_TOKENS \
20 (constant) \
21 (uniform) \
22 (vertex) \
23
24TF_DECLARE_PUBLIC_TOKENS(GeomUtilInterpolationTokens,
25 GEOMUTIL_API, GEOMUTIL_INTERPOLATION_TOKENS);
26
27
28PXR_NAMESPACE_CLOSE_SCOPE
29
30#endif // PXR_IMAGING_GEOM_UTIL_TOKENS_H
This file defines some macros that are useful for declaring and using static TfTokens.
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
Definition: staticTokens.h:92