mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
Fix mirrors, poly draw (WIP), and game over screen. Temp disable high scores.
This commit is contained in:
19
PortabilityLayer/ScanlineMaskIterator.h
Normal file
19
PortabilityLayer/ScanlineMaskIterator.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "ScanlineMaskDataStorage.h"
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
class ScanlineMaskIterator
|
||||
{
|
||||
public:
|
||||
ScanlineMaskIterator(const void *data, ScanlineMaskDataStorage dataStorage);
|
||||
size_t Next();
|
||||
|
||||
private:
|
||||
const void *m_loc;
|
||||
const ScanlineMaskDataStorage m_storage;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user