mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-22 22:45:39 +00:00
21 lines
339 B
C++
21 lines
339 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.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;
|
|
};
|
|
}
|