Home
last modified time | relevance | path

Searched refs:drawnPixels (Results 1 – 1 of 1) sorted by relevance

/dports/games/brumbrumrally/brumbrumrally-0.7/src/
H A DSurface.cpp315 static std::vector<PixelBool> drawnPixels; in rotate_draw() local
316 drawnPixels.resize(countX * countY, false); in rotate_draw()
336 …PixelBool& pixelIsDrawn = drawnPixels[std::floor(dx + v.x) - minX - std::floor(dx) + (std::floor(d… in rotate_draw()
351 if (!drawnPixels[x + y * countX] && in rotate_draw()
352 drawnPixels[(x + 1) + y * countX] && in rotate_draw()
353 drawnPixels[(x - 1) + y * countX] && in rotate_draw()
354 drawnPixels[x + (y + 1) * countX] && in rotate_draw()
355 drawnPixels[x + (y - 1) * countX] ) in rotate_draw()
388 drawnPixels.clear(); in rotate_draw()