9 lines
217 B
C++
9 lines
217 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
class RendererInterface {
|
|
public:
|
|
virtual ~RendererInterface() = default;
|
|
virtual bool render(int pageIndex, float scale, uint8_t* outputBuffer, int width, int height) = 0;
|
|
};
|