You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* \details Specifically, it determines whether all lines, no lines, only even lines, or only odd lines are read.
3757
3758
*
3758
-
* \note The opposite function, which determines whether all lines, only even lines or only odd lines are <i>written</i> to the EFB, is GX_SetFieldMask().<br><br>
3759
-
*
3760
-
* \note Only applies to display copies, GX_CopyTex() always uses the <tt>GX_COPY_PROGRESSIVE</tt> mode.
3759
+
* \note The opposite function, which determines whether all lines, no lines, only even lines, or only odd lines are <i>written</i> to the EFB, is GX_SetFieldMask().<br><br>
3761
3760
*
3762
3761
* \param[in] mode \ref copymode to determine which field to copy (or both)
* \brief This function sets the width and height of the destination texture buffer in texels.
3818
3817
*
3819
3818
* \details This function sets the width (\a wd) and height (\a ht) of the destination texture buffer in texels. The application may render an image into
3820
3819
* the EFB and then copy it into a texture buffer in main memory. \a wd specifies the number of texels between adjacent lines in the texture buffer and can
3821
3820
* be different than the width of the source image. This function also sets the texture format (\a fmt) to be created during the copy operation. An
3822
-
* optional box filter can be enabled using \a mipmap. This flag will scale the source image by 1/2.
3821
+
* optional box filter can be enabled by setting \a mode to <tt>GX_COPY_MIPMAP</tt>. This flag will scale the source image by 1/2.
3823
3822
*
3824
3823
* Normally, the width of the EFB and destination \a wd are the same. When rendering smaller images that get copied and composited into a larger texture
3825
3824
* buffer, however, the EFB width and texture buffer \a wd are not necessarily the same.
* \param[in] wd distance between successive lines in the texture buffer, in texels; must be a multiple of the texture tile width, which depends on \a fmt.
3833
3832
* \param[in] ht height of the texture buffer
3834
3833
* \param[in] fmt \ref texfmt
3835
-
* \param[in] mipmap flag that indicates framebuffer should be cleared if <tt>GX_TRUE</tt>.
3834
+
* \param[in] mode \ref copymode to determine which field to copy (or both)
0 commit comments