Loading...
Searching...
No Matches
HdEmbreeConstantSampler Class Reference

This class implements the HdEmbreePrimvarSampler interface for primvars with "constant" interpolation mode. More...

#include <meshSamplers.h>

+ Inheritance diagram for HdEmbreeConstantSampler:

Public Member Functions

 HdEmbreeConstantSampler (TfToken const &name, VtValue const &value)
 Constructor.
 
virtual bool Sample (unsigned int element, float u, float v, void *value, HdTupleType dataType) const
 Sample the primvar at an (element, u, v) location.
 
- Public Member Functions inherited from HdEmbreePrimvarSampler
 HdEmbreePrimvarSampler ()=default
 Default constructor.
 
virtual ~HdEmbreePrimvarSampler ()=default
 Default destructor.
 
virtual bool Sample (unsigned int element, float u, float v, void *value, HdTupleType dataType) const =0
 Sample the primvar at element index index and local basis coordinates u and v, writing the sample to value.
 
template<typename T >
bool Sample (unsigned int element, float u, float v, T *value) const
 

Additional Inherited Members

- Static Protected Member Functions inherited from HdEmbreePrimvarSampler
static bool _Interpolate (void *out, void **samples, float *weights, size_t sampleCount, HdTupleType dataType)
 Utility function for derived classes: combine multiple samples with blend weights: out = sum_i { samples[i] * weights[i] }.
 

Detailed Description

This class implements the HdEmbreePrimvarSampler interface for primvars with "constant" interpolation mode.

This means that the buffer only has one item, which should be returned for any (element, u, v) tuple.

Definition at line 84 of file meshSamplers.h.

Constructor & Destructor Documentation

◆ HdEmbreeConstantSampler()

HdEmbreeConstantSampler ( TfToken const &  name,
VtValue const &  value 
)
inline

Constructor.

Parameters
nameThe name of the primvar.
valueThe buffer data for the primvar.

Definition at line 89 of file meshSamplers.h.

Member Function Documentation

◆ Sample()

virtual bool Sample ( unsigned int  element,
float  u,
float  v,
void *  value,
HdTupleType  dataType 
) const
virtual

Sample the primvar at an (element, u, v) location.

For constant primvars, the buffer only contains one item, so we always return that item.

Parameters
elementThe element index to sample.
uThe u coordinate to sample.
vThe v coordinate to sample.
valueThe memory to write the value to (only written on success).
dataTypeThe HdTupleType describing element values.
Returns
True if the value was successfully sampled.

Implements HdEmbreePrimvarSampler.


The documentation for this class was generated from the following file: