Trabajando en el marcador

This commit is contained in:
2022-08-31 13:56:17 +02:00
parent fff400be8f
commit c57fbf7bc3
11 changed files with 180 additions and 16 deletions

View File

@@ -165,4 +165,10 @@ void Screen::setWindowSize(int size)
void Screen::setBorderColor(color_t color)
{
borderColor = color;
}
// Cambia el tipo de mezcla
void Screen::setBlendMode(SDL_BlendMode blendMode)
{
SDL_SetRenderDrawBlendMode(renderer, blendMode);
}