cgv
Loading...
Searching...
No Matches
cgv::render::line_renderer Class Reference

renderer that supports point splatting More...

#include <line_renderer.h>

Inheritance diagram for cgv::render::line_renderer:
cgv::render::group_renderer cgv::render::renderer cgv::render::box_wire_renderer cgv::render::normal_renderer

Public Member Functions

 line_renderer ()
 construct line rendering
 
bool enable (context &ctx)
 overload to activate group style
 
bool disable (context &ctx)
 disable renderer
 
void enable_attribute_array_manager (const context &ctx, attribute_array_manager &aam)
 call this before setting attribute arrays to manage attribute array in given manager
 
void disable_attribute_array_manager (const context &ctx, attribute_array_manager &aam)
 call this after last render/draw call to ensure that no other users of renderer change attribute arrays of given manager
 
bool init (context &ctx)
 call init() once before using renderer
 
template<typename T >
void set_normal (const context &ctx, const cgv::math::fvec< T, 3 > &normal)
 specify a single normal for all lines
 
template<typename T >
void set_normal_array (const context &ctx, const std::vector< T > &normals)
 templated method to set the normal attribute from a vector of normals of type T, which should have 3 components
 
template<typename T >
void set_normal_array (const context &ctx, const T *normals, size_t nr_elements, unsigned stride_in_bytes=0)
 templated method to set the normal attribute from an array of normals of type T, which should have 3 components
 
void remove_normal_array (const context &ctx)
 remove the normal attribute
 
template<typename T >
void set_line_width (const context &ctx, const T &line_width)
 specify a single line_width for all lines
 
template<typename T >
void set_line_width_array (const context &ctx, const std::vector< T > &line_widths)
 line_width array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box
 
template<typename T >
void set_line_width_array (const context &ctx, const T *line_widths, size_t nr_elements, unsigned stride_in_bytes=0)
 line_width array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box
 
void remove_line_width_array (const context &ctx)
 remove the line width attribute
 
template<typename T >
void set_depth_offset (const context &ctx, const T &depth_offset)
 specify a single depth_offset for all lines
 
template<typename T >
void set_depth_offset_array (const context &ctx, const std::vector< T > &depth_offsets)
 depth_offset array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box
 
template<typename T >
void set_depth_offset_array (const context &ctx, const T *depth_offsets, size_t nr_elements, unsigned stride_in_bytes=0)
 depth_offset array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box
 
void remove_depth_offset_array (const context &ctx)
 remove the depth offset attribute
 
void draw (context &ctx, size_t start, size_t count, bool use_strips=false, bool use_adjacency=false, uint32_t strip_restart_index=-1)
 convenience function to render with default settings
 
- Public Member Functions inherited from cgv::render::group_renderer
bool validate_attributes (const context &ctx) const
 check additionally the group attributes
 
void set_group_index_array (const context &ctx, const std::vector< unsigned > &group_indices)
 method to set the group index attribute
 
void set_group_index_array (const context &ctx, const unsigned *group_indices, size_t nr_elements)
 method to set the group index attribute
 
void set_group_index_array (const context &ctx, type_descriptor element_type, const vertex_buffer &vbo, size_t offset_in_bytes, size_t nr_elements, unsigned stride_in_bytes=0)
 method to set the group index attribute from a vertex buffer object, the element type must be given as explicit template parameter
 
template<typename T >
void set_group_index_array (const context &ctx, const vertex_buffer &vbo, size_t offset_in_bytes, size_t nr_elements, unsigned stride_in_bytes=0)
 template method to set the group index color attribute from a vertex buffer object, the element type must be given as explicit template parameter
 
void remove_group_index_array (const context &ctx)
 remove the group index attribute
 
template<typename T >
void set_group_colors (const context &ctx, const std::vector< T > &colors)
 template method to set the group colors from a vector of colors of type T
 
template<typename T >
void set_group_colors (const context &ctx, const T *colors, size_t nr_elements)
 template method to set the group colors from a vector of colors of type T
 
template<typename T >
void set_group_translations (const context &ctx, const std::vector< T > &group_translations)
 template method to set the group translations from a vector of vectors of type T, which should have 3 components
 
template<typename T >
void set_group_translations (const context &ctx, const T *group_translations, size_t nr_elements)
 template method to set the group translations from a vector of vectors of type T, which should have 3 components
 
template<typename T >
void set_group_rotations (const context &ctx, const std::vector< T > &group_rotations)
 template method to set the group rotation from a vector of quaternions of type T, which should have 4 components
 
template<typename T >
void set_group_rotations (const context &ctx, const T *group_rotations, size_t nr_elements)
 template method to set the group rotation from a vector of quaternions of type T, which should have 4 components
 
- Public Member Functions inherited from cgv::render::renderer
shader_define_mapref_defines ()
 access to shader define map to update defines not handled by render style
 
shader_programref_prog ()
 derived renderer classes have access to shader program
 
void set_prog (shader_program &one_shot_prog)
 set external shader program up to next call to disable() or render()
 
void draw_impl (context &ctx, PrimitiveType pt, size_t start, size_t count, bool use_strips=false, bool use_adjacency=false, uint32_t strip_restart_index=-1)
 default implementation of draw method with support for indexed rendering and different primitive types
 
void draw_impl_instanced (context &ctx, PrimitiveType type, size_t start, size_t count, size_t instance_count, bool use_strips=false, bool use_adjacency=false, uint32_t strip_restart_index=-1)
 default implementation of instanced draw method with support for indexed rendering and different primitive types
 
 renderer ()
 construct and init attribute tracking flags
 
virtual ~renderer ()
 destructor deletes default renderer style
 
void manage_singleton (context &ctx, const std::string &renderer_name, int &ref_count, int ref_count_change)
 used by derived classes to manage singletons
 
virtual void set_attribute_array_manager (const context &ctx, attribute_array_manager *_aam_ptr=0)
 this function is deprecated, please use enable_attribute_array_manager() and disable_attribute_manager() instead
 
void set_render_style (const render_style &rs)
 reference given render style
 
bool build_program (context &ctx, shader_program &prog, const render_style &rs)
 build shader program for specific render style
 
template<typename T >
void set_position (const context &ctx, const T &position)
 templated method to set the position attribute from a single position of type T
 
template<typename T >
void set_position_array (const context &ctx, const std::vector< T > &positions)
 templated method to set the position attribute from a vector of positions of type T
 
template<typename T >
void set_position_array (const context &ctx, const T *positions, size_t nr_elements, unsigned stride_in_bytes=0)
 templated method to set the position attribute from a vector of positions of type T
 
void set_position_array (const context &ctx, type_descriptor element_type, const vertex_buffer &vbo, size_t offset_in_bytes, size_t nr_elements, unsigned stride_in_bytes)
 method to set the position attribute from a vertex buffer object
 
template<typename T >
void set_position_array (const context &ctx, const vertex_buffer &vbo, size_t offset_in_bytes, size_t nr_elements, unsigned stride_in_bytes=0)
 template method to set the position attribute from a vertex buffer object, the element type must be given as explicit template parameter
 
void remove_position_array (const context &ctx)
 remove the position attribute
 
template<typename T >
void set_color (const context &ctx, const T &color)
 templated method to set the color attribute from a single color of type T
 
template<typename T >
void set_color_array (const context &ctx, const std::vector< T > &colors)
 template method to set the color attribute from a vector of colors of type T
 
template<typename T >
void set_color_array (const context &ctx, const T *colors, size_t nr_elements, unsigned stride_in_bytes=0)
 template method to set the color attribute from a vector of colors of type T
 
void set_color_array (const context &ctx, type_descriptor element_type, const vertex_buffer &vbo, size_t offset_in_bytes, size_t nr_elements, unsigned stride_in_bytes=0)
 method to set the color attribute from a vertex buffer object, the element type must be given as explicit template parameter
 
template<typename T >
void set_color_array (const context &ctx, const vertex_buffer &vbo, size_t offset_in_bytes, size_t nr_elements, unsigned stride_in_bytes=0)
 template method to set the color attribute from a vertex buffer object, the element type must be given as explicit template parameter
 
void remove_color_array (const context &ctx)
 remove the color attribute
 
template<typename T >
bool set_indices (const context &ctx, const std::vector< T > &indices, bool keep_on_cpu=false)
 Set the indices for indexed rendering from a vector.
 
template<typename T >
bool set_indices (const context &ctx, const T *indices, size_t nr_indices, bool keep_on_cpu=false)
 Set the indices for indexed rendering from an array given as a pointer.
 
template<typename T >
bool set_indices (const context &ctx, const vertex_buffer &vbo, size_t count)
 Set the indices for indexed rendering from a GPU buffer.
 
bool has_indices () const
 return whether indices have been defined
 
void remove_indices (const context &ctx)
 remove previously set indices
 
const vertex_bufferget_vertex_buffer_ptr (const context &ctx, const attribute_array_manager &aam, const std::string &attr_name)
 
const vertex_bufferget_index_buffer_ptr (const attribute_array_manager &aam)
 
bool validate_and_enable (context &ctx)
 validate attributes and if successful, enable renderer
 
virtual bool render (context &ctx, size_t start, size_t count, bool use_strips=false, bool use_adjacency=false, uint32_t strip_restart_index=-1)
 Convenience function that draws vertex or indexed element with this renderer.
 
virtual void clear (const context &ctx)
 the clear function destructs the shader program
 

Protected Member Functions

render_stylecreate_render_style () const
 virtual method that creates a default render style
 
bool build_shader_program (context &ctx, shader_program &prog, const shader_define_map &defines)
 build line program
 
- Protected Member Functions inherited from cgv::render::renderer
bool has_aam () const
 check for attribute array manager
 
bool has_attribute (const context &ctx, const std::string &name)
 check for attribute
 
const render_styleget_style_ptr () const
 access to render style
 
bool attributes_persist () const
 return whether attributes persist after a call to disable
 
virtual void update_defines (shader_define_map &defines)
 overload to update the shader defines based on the current render style; only called if internal shader program is used
 
template<typename T >
const T & get_style () const
 access to style
 
int get_prog_attribute_location (const context &ctx, const std::string &name, bool error_check=true)
 
template<typename T >
bool set_attribute_array (const context &ctx, const std::string &name, const T &array)
 
template<typename T >
bool set_attribute_array (const context &ctx, const std::string &name, const T *array_ptr, size_t nr_elements, unsigned stride)
 
bool set_attribute_array (const context &ctx, const std::string &name, type_descriptor element_type, const vertex_buffer &vbo, size_t offset_in_bytes, size_t nr_elements, unsigned stride_in_bytes)
 
template<typename C , typename T >
bool set_composed_attribute_array (const context &ctx, const std::string &name, const C *array_ptr, size_t nr_elements, const T &elem)
 in case that several attributes are stored interleaved, call this function for the first and ref_composed_attribute_array() for all others
 
template<typename C , typename T >
bool ref_composed_attribute_array (const context &ctx, const std::string &name, const std::string &name_ref, const C *array_ptr, size_t nr_elements, const T &elem)
 in case that several attributes are stored interleaved, call set_composed_attribute_array() for the first and this function for all others
 
bool remove_attribute_array (const context &ctx, const std::string &name)
 

Protected Attributes

bool has_normals
 
bool has_line_widths
 
bool has_depth_offsets
 
- Protected Attributes inherited from cgv::render::group_renderer
bool has_group_indices
 
bool has_group_colors
 
bool has_group_translations
 
bool has_group_rotations
 
- Protected Attributes inherited from cgv::render::renderer
bool has_colors
 track whether color attribute is defined
 
bool has_positions
 track whether position attribute is defined
 

Detailed Description

renderer that supports point splatting

Definition at line 61 of file line_renderer.h.

Constructor & Destructor Documentation

◆ line_renderer()

cgv::render::line_renderer::line_renderer ( )

construct line rendering

Definition at line 68 of file line_renderer.cxx.

Member Function Documentation

◆ build_shader_program()

bool cgv::render::line_renderer::build_shader_program ( context ctx,
shader_program prog,
const shader_define_map defines 
)
protectedvirtual

build line program

Reimplemented from cgv::render::renderer.

Reimplemented in cgv::render::normal_renderer.

Definition at line 74 of file line_renderer.cxx.

References cgv::render::shader_program::build_program().

◆ create_render_style()

render_style * cgv::render::line_renderer::create_render_style ( ) const
protectedvirtual

virtual method that creates a default render style

Implements cgv::render::renderer.

Reimplemented in cgv::render::normal_renderer.

Definition at line 16 of file line_renderer.cxx.

◆ disable()

bool cgv::render::line_renderer::disable ( context ctx)
virtual

◆ disable_attribute_array_manager()

void cgv::render::line_renderer::disable_attribute_array_manager ( const context ctx,
attribute_array_manager aam 
)
virtual

call this after last render/draw call to ensure that no other users of renderer change attribute arrays of given manager

Reimplemented from cgv::render::group_renderer.

Definition at line 49 of file line_renderer.cxx.

References cgv::render::group_renderer::disable_attribute_array_manager().

Referenced by cgv::render::box_wire_renderer::disable_attribute_array_manager().

◆ draw()

void cgv::render::line_renderer::draw ( context ctx,
size_t  start,
size_t  count,
bool  use_strips = false,
bool  use_adjacency = false,
uint32_t  strip_restart_index = -1 
)
virtual

convenience function to render with default settings

Reimplemented from cgv::render::renderer.

Reimplemented in cgv::render::normal_renderer.

Definition at line 156 of file line_renderer.cxx.

References cgv::render::renderer::draw_impl().

◆ enable()

◆ enable_attribute_array_manager()

void cgv::render::line_renderer::enable_attribute_array_manager ( const context ctx,
attribute_array_manager aam 
)
virtual

call this before setting attribute arrays to manage attribute array in given manager

Reimplemented from cgv::render::group_renderer.

Definition at line 38 of file line_renderer.cxx.

References cgv::render::group_renderer::enable_attribute_array_manager(), and cgv::render::renderer::has_attribute().

Referenced by cgv::render::box_wire_renderer::enable_attribute_array_manager().

◆ init()

bool cgv::render::line_renderer::init ( context ctx)
virtual

call init() once before using renderer

creates default render style and builds shader program based on defines that can be configured with ref_defines() before calling init(). Reconfiguring defines after init() causes rebuild of shader program in enable() function.

Reimplemented from cgv::render::renderer.

Definition at line 79 of file line_renderer.cxx.

References cgv::render::renderer::init(), cgv::render::renderer::ref_prog(), and cgv::render::shader_program::set_attribute().

◆ remove_depth_offset_array()

void cgv::render::line_renderer::remove_depth_offset_array ( const context ctx)

remove the depth offset attribute

Definition at line 64 of file line_renderer.cxx.

◆ remove_line_width_array()

void cgv::render::line_renderer::remove_line_width_array ( const context ctx)

remove the line width attribute

Definition at line 60 of file line_renderer.cxx.

◆ remove_normal_array()

void cgv::render::line_renderer::remove_normal_array ( const context ctx)

remove the normal attribute

Definition at line 56 of file line_renderer.cxx.

◆ set_depth_offset()

template<typename T >
void cgv::render::line_renderer::set_depth_offset ( const context ctx,
const T &  depth_offset 
)
inline

specify a single depth_offset for all lines

Definition at line 108 of file line_renderer.h.

◆ set_depth_offset_array() [1/2]

template<typename T >
void cgv::render::line_renderer::set_depth_offset_array ( const context ctx,
const std::vector< T > &  depth_offsets 
)
inline

depth_offset array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box

Definition at line 111 of file line_renderer.h.

◆ set_depth_offset_array() [2/2]

template<typename T >
void cgv::render::line_renderer::set_depth_offset_array ( const context ctx,
const T *  depth_offsets,
size_t  nr_elements,
unsigned  stride_in_bytes = 0 
)
inline

depth_offset array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box

Definition at line 114 of file line_renderer.h.

◆ set_line_width()

template<typename T >
void cgv::render::line_renderer::set_line_width ( const context ctx,
const T &  line_width 
)
inline

specify a single line_width for all lines

Definition at line 97 of file line_renderer.h.

◆ set_line_width_array() [1/2]

template<typename T >
void cgv::render::line_renderer::set_line_width_array ( const context ctx,
const std::vector< T > &  line_widths 
)
inline

line_width array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box

Definition at line 100 of file line_renderer.h.

◆ set_line_width_array() [2/2]

template<typename T >
void cgv::render::line_renderer::set_line_width_array ( const context ctx,
const T *  line_widths,
size_t  nr_elements,
unsigned  stride_in_bytes = 0 
)
inline

line_width array specifies box extends in case of position_is_center=true, otherwise the maximum point of each box

Definition at line 103 of file line_renderer.h.

◆ set_normal()

template<typename T >
void cgv::render::line_renderer::set_normal ( const context ctx,
const cgv::math::fvec< T, 3 > &  normal 
)
inline

specify a single normal for all lines

Definition at line 86 of file line_renderer.h.

◆ set_normal_array() [1/2]

template<typename T >
void cgv::render::line_renderer::set_normal_array ( const context ctx,
const std::vector< T > &  normals 
)
inline

templated method to set the normal attribute from a vector of normals of type T, which should have 3 components

Definition at line 89 of file line_renderer.h.

◆ set_normal_array() [2/2]

template<typename T >
void cgv::render::line_renderer::set_normal_array ( const context ctx,
const T *  normals,
size_t  nr_elements,
unsigned  stride_in_bytes = 0 
)
inline

templated method to set the normal attribute from an array of normals of type T, which should have 3 components

Definition at line 92 of file line_renderer.h.

Member Data Documentation

◆ has_depth_offsets

bool cgv::render::line_renderer::has_depth_offsets
protected

Definition at line 66 of file line_renderer.h.

◆ has_line_widths

bool cgv::render::line_renderer::has_line_widths
protected

Definition at line 65 of file line_renderer.h.

◆ has_normals

bool cgv::render::line_renderer::has_normals
protected

Definition at line 64 of file line_renderer.h.


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