MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_dimensions()

std::pair< uint32_t, uint32_t > MayaFlux::Buffers::NodeTextureBuffer::get_dimensions ( ) const
inline

Get texture dimensions from node.

Definition at line 122 of file NodeTextureBuffer.hpp.

123 {
124 return m_texture_node
125 ? std::make_pair(m_texture_node->get_width(), m_texture_node->get_height())
126 : std::make_pair(0U, 0U);
127 }
std::shared_ptr< Nodes::GpuSync::TextureNode > m_texture_node