dev: clean TODOs

This commit is contained in:
Zy 2024-11-13 18:40:29 +01:00 committed by mcolonna
parent a09cf69412
commit f0680246a6
4 changed files with 4 additions and 9 deletions

View file

@ -25,6 +25,6 @@
# define SCREEN_WIDTH 640 // Width of the window
# define SCREEN_HEIGHT 480 // Height of the window
# define FOV 0.66 // ? TODO no idea
# define FOV 0.66 // Width of the view plane (unit: cases)
#endif

View file

@ -29,8 +29,7 @@ typedef struct s_point_int
int y;
} t_point_int;
// TODO Must the transparency be 0 or 255?
/// @brief Represents an TRGB color in 0xTTRRGGBB format.
/// @brief Represents an TRGB color in 0xTTRRGGBB format. TT is 0x00 if opaque
typedef __u32 t_color;
/// @brief Convert a color from each color value to a t_color.