| 48 | } |
| 49 | |
| 50 | std::string getFragmentShaderClippingBlock() |
| 51 | { |
| 52 | return R"( |
| 53 | if (useClippingPlane && dot(world_pos,vec3(clippingPlane))>clippingPlane.w) |
| 54 | discard; |
| 55 | )"; |
| 56 | } |
| 57 | |
| 58 | std::string getFragmentShaderPointSizeBlock() |
| 59 | { |
no outgoing calls
no test coverage detected