* Draw pixel within an image */
| 599 | * Draw pixel within an image |
| 600 | */ |
| 601 | void DrawPixel(int posX, int posY, ::Color color = {255, 255, 255, 255}) { |
| 602 | ::ImageDrawPixel(this, posX, posY, color); |
| 603 | } |
| 604 | |
| 605 | void DrawPixel(::Vector2 position, ::Color color = {255, 255, 255, 255}) { |
| 606 | ::ImageDrawPixelV(this, position, color); |
nothing calls this directly
no outgoing calls
no test coverage detected