1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-08 15:19:50 +00:00

remove RenderObject::blendEnabled and cleanup the blend code a bit

This commit is contained in:
fgenesis 2022-05-19 01:34:31 +02:00
parent 06270eaac0
commit 46010244f5
26 changed files with 111 additions and 79 deletions

6
BBGE/EngineEnums.h Normal file
View file

@ -0,0 +1,6 @@
#ifndef BBGE_ENGINE_ENUMS_H
#define BBGE_ENGINE_ENUMS_H
enum BlendType { BLEND_DISABLED = -1, BLEND_DEFAULT = 0, BLEND_ADD, BLEND_SUB, BLEND_MULT, _BLEND_MAXSIZE };
#endif