| 90 | }; |
| 91 | |
| 92 | class plot2d_impl : public plot_impl { |
| 93 | protected: |
| 94 | glm::mat4 computeTransformMat(const glm::mat4 pView, const glm::mat4 pOrient) override; |
| 95 | |
| 96 | void bindDimSpecificUniforms() override; // has to be called only after shaders are bound |
| 97 | |
| 98 | public: |
| 99 | plot2d_impl(const uint pNumPoints, const forge::dtype pDataType, |
| 100 | const forge::PlotType pPlotType, const forge::MarkerType pMarkerType) |
| 101 | : plot_impl(pNumPoints, pDataType, pPlotType, pMarkerType, 2) {} |
| 102 | }; |
| 103 | |
| 104 | } |
| 105 | } |
nothing calls this directly
no outgoing calls
no test coverage detected