mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
Removed old fixed function code from GFX.
This commit is contained in:
parent
58d2e30af7
commit
5a933c00d3
53 changed files with 98 additions and 1646 deletions
|
|
@ -62,6 +62,12 @@ public:
|
|||
c_maxMipLevels = 13
|
||||
};
|
||||
|
||||
enum TextureOp
|
||||
{
|
||||
Add,
|
||||
Subtract
|
||||
};
|
||||
|
||||
struct Registration
|
||||
{
|
||||
/// The read function prototype.
|
||||
|
|
@ -218,7 +224,7 @@ public:
|
|||
///
|
||||
/// @note There are some restrictions on ops and formats that will probably change
|
||||
/// based on how we use this function.
|
||||
bool combine( const GBitmap *bitmapA, const GBitmap *bitmapB, const GFXTextureOp combineOp );
|
||||
bool combine( const GBitmap *bitmapA, const GBitmap *bitmapB, const TextureOp combineOp );
|
||||
|
||||
/// Fills the first mip level of the bitmap with the specified color.
|
||||
void fill( const ColorI &rColor );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue