Skip to content

Commit

Permalink
doc: specify supported registers for GX_SetTevColor*()
Browse files Browse the repository at this point in the history
While setting GX_TEVPREV works in Dolphin, it does not work on a real
hardware.
  • Loading branch information
mardy authored and WinterMute committed Nov 14, 2024
1 parent e985431 commit c7c29f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gc/ogc/gx.h
Original file line number Diff line number Diff line change
Expand Up @@ -2566,7 +2566,7 @@ void GX_SetTevOp(u8 tevstage,u8 mode);
*
* \note This function can only set unsigned 8-bit colors. To set signed, 10-bit colors use GX_SetTevColorS10().
*
* \param[in] tev_regid \ref tevcoloutreg.
* \param[in] tev_regid \ref tevcoloutreg. Only GX_TEVREG0, GX_TEVREG1 and GX_TEVREG2 are supported.
* \param[in] color Constant color value.
*
* \return none
Expand All @@ -2582,7 +2582,7 @@ void GX_SetTevColor(u8 tev_regid,GXColor color);
*
* \note This function enables the color components to be signed 10-bit numbers. To set 8-bit unsigned colors (the common case), use GX_SetTevColor().
*
* \param[in] tev_regid \ref tevcoloutreg.
* \param[in] tev_regid \ref tevcoloutreg. Only GX_TEVREG0, GX_TEVREG1 and GX_TEVREG2 are supported.
* \param[in] color Constant color value in S10 format.
*
* \return none
Expand Down

0 comments on commit c7c29f1

Please sign in to comment.