We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90a30ce commit b0cef59Copy full SHA for b0cef59
src/core/include/growl/core/graphics/shader.h
@@ -18,11 +18,11 @@ class Shader {
18
19
virtual Error compile() = 0;
20
21
- virtual const std::string& getVertexSource() {
+ virtual std::string& getVertexSource() {
22
return vertex_src;
23
}
24
25
- virtual const std::string& getFragmentSource() {
+ virtual std::string& getFragmentSource() {
26
return fragment_src;
27
28
0 commit comments