mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
20 lines
319 B
C++
20 lines
319 B
C++
#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;
|
|
};
|
|
}
|