| 653 | } |
| 654 | |
| 655 | std::string GpuShaderText::float2Const(const std::string& x, const std::string& y) const |
| 656 | { |
| 657 | std::ostringstream kw; |
| 658 | kw << float2Keyword() << "(" << x << ", " << y << ")"; |
| 659 | return kw.str(); |
| 660 | } |
| 661 | |
| 662 | std::string GpuShaderText::float2Decl(const std::string & name) const |
| 663 | { |
no outgoing calls
no test coverage detected