libogc icon indicating copy to clipboard operation
libogc copied to clipboard

C Library for Wii and Gamecube homebrew

Results 23 libogc issues
Sort by recently updated
recently updated
newest added

This is the range expected by the video interface and values outside of it are clipped before reaching the video encoder.

The function provides a wrapper to GX_SetTevIndirect to warp indirect textures more easily. The function is also undocumented at the moment.

It seems like the console doesn't support colors (unless I'm just missing how to enable them). eg: ```c printf("\x1B[38;5;14mI'm cyan\n"); printf("\x1B[1;14mI'm also cyan\n"); ``` Both produce white. The same is...

While attempting to build libcurl for the Wii, I ran into problems where some of the [necessary functions](https://curl.se/mail/lib-2008-08/0119.html), namely `net_getsockopt`, `net_getsockname`, and the data type `struct pollfd` were not present...

libogc includes a copy of kprintf, which was distributed under the GPL, despite libogc having a license most closely matching MIT. https://github.com/devkitPro/libogc/blob/master/libogc/kprintf.c

The documentation for this function should probably be fixed. [The documentation where it claims to take an absolute timeout.](https://libogc.devkitpro.org/cond_8h.html) [Relevant header file.](https://github.com/devkitPro/libogc/blob/master/gc/ogc/cond.h#L92) However, following the actual implementation... [LWP_CondTimedWait](https://github.com/devkitPro/libogc/blob/master/libogc/cond.c#L179) [__lwp_cond_waitsupp](https://github.com/devkitPro/libogc/blob/master/libogc/cond.c#L112) [__lwp_wd_insert_ticks](https://github.com/devkitPro/libogc/blob/master/libogc/lwp_watchdog.inl#L62)...

Steps to reproduce: 1. Mount a remote share with write access (using smbInit or smbInitDevice). 2. open() an existing non-zero length file on the share with flags=O_RDWR (equivalent to fopen(foo,...

It's possible to set socket options, but it's not possible to get them. In particular, it would be nice to get net_getsockopt working with SOL_SOCKET, SO_ERROR, as that would make...

The Wii arcade console (RVA-001) [only has a VGA connector](https://up.shiz.me/a/rva-001-mk8sf/P8230180.JPG), no composite. This PR adds support to libogc for video output over that connector. It has the following caveats: -...