OGLplus  (0.59.0) a C++ wrapper for rendering APIs

stripes_node.hpp
Go to the documentation of this file.
1 #ifndef OGLPLUS_TEXGEN_STRIPES_NODE_HPP
9 #define OGLPLUS_TEXGEN_STRIPES_NODE_HPP
10 
11 #include "base_node.hpp"
12 #include "fallback_input.hpp"
13 
14 namespace eagine::oglp::texgen {
15 
16 class stripes_output : public base_output {
17 public:
18  input_with_const_default<float[3]> repeat;
19 
20  stripes_output(node_intf& parent);
21 
22  string_view type_name() override;
23 
24  slot_data_type value_type() override;
25 
26  std::ostream& definitions(std::ostream& out, compile_context& ctxt) override;
27 };
28 
29 class stripes_node
30  : public unary_single_output_node<
31  stripes_output,
32  decltype(stripes_output::repeat),
33  &stripes_output::repeat> {
34 public:
35  stripes_node& set_repeat(float x, float y, float z) {
36  _output.repeat.fallback().set(x, y, z);
37  return *this;
38  }
39 };
40 
41 } // namespace eagine::oglp::texgen
42 
43 #if !OGLPLUS_LINK_LIBRARY || defined(OGLPLUS_IMPLEMENTING_LIBRARY)
44 #include <oglplus/texgen/stripes_node.inl>
45 #endif
46 
47 #endif // OGLPLUS_TEXGEN_STRIPES_NODE_HPP
value_type
Value tree value element data type enumeration.
Definition: interface.hpp:27
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

Copyright © 2015-2021 Matúš Chochlík.
<chochlik -at -gmail.com>
Documentation generated on Tue Apr 13 2021 by Doxygen (version 1.8.17).