(Color color, float alpha)
| 71 | float[] color = new float[]{1.0F, 1.0F, 1.0F, 255.0F}; |
| 72 | |
| 73 | static void glColor(Color color, float alpha) { |
| 74 | float[] colorComponents = color.getColorComponents(null); |
| 75 | IRenderer.color[0] = colorComponents[0]; |
| 76 | IRenderer.color[1] = colorComponents[1]; |
no outgoing calls
no test coverage detected