Skip to content

Commit

Permalink
Add GPU_DOT3_RGBA texture combiner function
Browse files Browse the repository at this point in the history
  • Loading branch information
oreo639 authored and fincs committed Aug 12, 2023
1 parent e9fa000 commit a4634c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libctru/include/3ds/gpu/enums.h
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,8 @@ typedef enum
GPU_ADD_SIGNED = 0x03, ///< Signed add.
GPU_INTERPOLATE = 0x04, ///< Interpolate.
GPU_SUBTRACT = 0x05, ///< Subtract.
GPU_DOT3_RGB = 0x06, ///< Dot3. RGB only.
GPU_DOT3_RGB = 0x06, ///< Dot3. Scalar result is written to RGB only.
GPU_DOT3_RGBA = 0x07, ///< Dot3. Scalar result is written to RGBA.
GPU_MULTIPLY_ADD = 0x08, ///< Multiply then add.
GPU_ADD_MULTIPLY = 0x09, ///< Add then multiply.
} GPU_COMBINEFUNC;
Expand Down

0 comments on commit a4634c0

Please sign in to comment.