All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
dataSourceHash.h
1//
2// Copyright 2023 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_DATASOURCE_HASH_H
8#define PXR_IMAGING_HD_DATASOURCE_HASH_H
9
10#include "pxr/pxr.h"
11
12#include "pxr/imaging/hd/api.h"
13#include "pxr/imaging/hd/dataSource.h"
14
15PXR_NAMESPACE_OPEN_SCOPE
16
17using HdDataSourceHashType = size_t;
18
28HD_API
29HdDataSourceHashType
30HdDataSourceHash(HdDataSourceBaseHandle const &ds,
31 const HdSampledDataSource::Time startTime,
32 const HdSampledDataSource::Time endTime);
33
34PXR_NAMESPACE_CLOSE_SCOPE
35
36#endif