Skip to content

Commit

Permalink
Merge pull request #484 from geo-stark/master
Browse files Browse the repository at this point in the history
Add GetClipboardImage for drm platform.
  • Loading branch information
gen2brain authored Jan 9, 2025
2 parents d58ffe1 + e31988d commit 6dbba4f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions raylib/platforms/rcore_drm.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,16 @@ const char *GetClipboardText(void)
return NULL;
}

// Get clipboard image
Image GetClipboardImage(void)
{
Image image = { 0 };

TRACELOG(LOG_WARNING, "GetClipboardImage() not implemented on target platform");

return image;
}

// Show mouse cursor
void ShowCursor(void)
{
Expand Down

0 comments on commit 6dbba4f

Please sign in to comment.