| 1930 | } |
| 1931 | |
| 1932 | void GLInstancingRenderer::drawPoint(const double* position, const double color[4], double pointDrawSize) |
| 1933 | { |
| 1934 | float pos[4] = {(float)position[0], (float)position[1], (float)position[2], 0}; |
| 1935 | float clr[4] = {(float)color[0], (float)color[1], (float)color[2], (float)color[3]}; |
| 1936 | drawPoints(pos, clr, 1, 3 * sizeof(float), float(pointDrawSize)); |
| 1937 | } |
| 1938 | |
| 1939 | void GLInstancingRenderer::drawPoint(const float* positions, const float color[4], float pointDrawSize) |
| 1940 | { |
no outgoing calls
no test coverage detected