Go to the documentation of this file. 1 #ifndef OGLPLUS_TEXGEN_RANDOM_NODE_HPP
9 #define OGLPLUS_TEXGEN_RANDOM_NODE_HPP
14 namespace eagine::oglp::texgen {
16 class random_output :
public base_output {
18 input_with_const_default<float[3]> seed;
21 random_output(node_intf& parent);
27 std::ostream& definitions(std::ostream& out, compile_context& ctxt)
override;
30 using random_node = unary_single_output_node<
32 decltype(random_output::seed),
33 &random_output::seed>;
37 #if !OGLPLUS_LINK_LIBRARY || defined(OGLPLUS_IMPLEMENTING_LIBRARY)
38 #include <oglplus/texgen/random_node.inl>
41 #endif // OGLPLUS_TEXGEN_RANDOM_NODE_HPP
value_type
Value tree value element data type enumeration.
Definition: interface.hpp:27
std::ptrdiff_t span_size_t
Signed span size type used by eagine.
Definition: types.hpp:36
basic_string_span< const char > string_view
Alias for const string views.
Definition: string_span.hpp:116
static auto type_name(const T &) noexcept -> std::string
Returns the demangled name for type T.
Definition: type_name.hpp:24