Remove _SHIFTL and _SHIFTR macros since they are now in gcutil.h

This commit is contained in:
Crayon2000 2024-03-04 18:14:10 -05:00
parent 4b65d83fea
commit 96ac6cc2d8

View file

@ -1,5 +1,5 @@
/*------------------------------------------------------------------------------
Copyright (c) 2009-2021 The GRRLIB Team
Copyright (c) 2009-2024 The GRRLIB Team
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@ -25,11 +25,6 @@ THE SOFTWARE.
* Inline functions for manipulating pixels in textures.
*/
#define _SHIFTL(v, s, w) \
((u32) (((u32)(v) & ((0x01 << (w)) - 1)) << (s)))
#define _SHIFTR(v, s, w) \
((u32)(((u32)(v) >> (s)) & ((0x01 << (w)) - 1)))
/**
* Return the color value of a pixel from a GRRLIB_texImg.
* @param x Specifies the x-coordinate of the pixel in the texture.