Loading...
Searching...
No Matches
debugCodes.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_DEBUG_CODES_H
25#define PXR_IMAGING_HD_DEBUG_CODES_H
26
27#include "pxr/pxr.h"
28#include "pxr/imaging/hd/version.h"
29#include "pxr/base/tf/debug.h"
30
31PXR_NAMESPACE_OPEN_SCOPE
32
33
35 HD_BPRIM_ADDED,
36 HD_BPRIM_REMOVED,
37 HD_BUFFER_ARRAY_INFO,
38 HD_BUFFER_ARRAY_RANGE_CLEANED,
39 HD_CACHE_HITS,
40 HD_CACHE_MISSES,
41 HD_COUNTER_CHANGED,
42 HD_DIRTY_ALL_COLLECTIONS,
43 HD_DIRTY_LIST,
44 HD_DISABLE_MULTITHREADED_RPRIM_SYNC,
45 HD_DRAWITEMS_CULLED,
46 HD_ENGINE_PHASE_INFO,
47 HD_EXT_COMPUTATION_ADDED,
48 HD_EXT_COMPUTATION_REMOVED,
49 HD_EXT_COMPUTATION_UPDATED,
50 HD_EXT_COMPUTATION_EXECUTION,
51 HD_FREEZE_CULL_FRUSTUM,
52 HD_INSTANCER_ADDED,
53 HD_INSTANCER_CLEANED,
54 HD_INSTANCER_REMOVED,
55 HD_INSTANCER_UPDATED,
56 HD_RENDER_SETTINGS,
57 HD_RPRIM_ADDED,
58 HD_RPRIM_CLEANED,
59 HD_RPRIM_REMOVED,
60 HD_RPRIM_UPDATED,
61 HD_SAFE_MODE,
62 HD_SELECTION_UPDATE,
63 HD_SHARED_EXT_COMPUTATION_DATA,
64 HD_SPRIM_ADDED,
65 HD_SPRIM_REMOVED,
66 HD_SYNC_ALL,
67 HD_TASK_ADDED,
68 HD_TASK_REMOVED,
69 HD_VARYING_STATE
70);
71
72
73PXR_NAMESPACE_CLOSE_SCOPE
74
75#endif // PXR_IMAGING_HD_DEBUG_CODES_H
Conditional debugging output class and macros.
#define TF_DEBUG_CODES(...)
Define debugging symbols.
Definition: debug.h:393