TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ GenerateGLSL()

std::string GLSLLine::GenerateGLSL ( )

Definition at line 75 of file GLSLHandler.cpp.

76{
77 std::stringstream c;
78 c << line;
79
80 if(comment.size() > 0)
81 {
82 c << " // " << comment;
83 }
84
85 return c.str();
86}