Clears the color buffers with the specified Color. @param color Color to clear the color buffers with.
(Color color)
| 38 | /** Clears the color buffers with the specified Color. |
| 39 | * @param color Color to clear the color buffers with. */ |
| 40 | public static void clear (Color color) { |
| 41 | clear(color.r, color.g, color.b, color.a, false); |
| 42 | } |
| 43 | |
| 44 | /** Clears the color buffers with the specified color. */ |
| 45 | public static void clear (float r, float g, float b, float a) { |