MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / DrawPixel

Function DrawPixel

include/Image.hpp:601–603  ·  view source on GitHub ↗

* Draw pixel within an image */

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected