mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
31 lines
997 B
C++
31 lines
997 B
C++
#ifndef INCLUDED_IRENDER3D_H
|
|
#define INCLUDED_IRENDER3D_H
|
|
|
|
#include <cstdint>
|
|
|
|
/*
|
|
* IRender3D:
|
|
*
|
|
* Interface (abstract base class) for Real3D rendering engine.
|
|
*/
|
|
class IRender3D
|
|
{
|
|
public:
|
|
virtual void RenderFrame(void) = 0;
|
|
virtual void BeginFrame(void) = 0;
|
|
virtual void EndFrame(void) = 0;
|
|
virtual void UploadTextures(unsigned level, unsigned x, unsigned y, unsigned width, unsigned height) = 0;
|
|
virtual void AttachMemory(const uint32_t *cullingRAMLoPtr, const uint32_t *cullingRAMHiPtr, const uint32_t *polyRAMPtr, const uint32_t *vromPtr, const uint16_t *textureRAMPtr) = 0;
|
|
virtual void SetStepping(int stepping) = 0;
|
|
virtual bool Init(unsigned xOffset, unsigned yOffset, unsigned xRes, unsigned yRes, unsigned totalXRes, unsigned totalYRes) = 0;
|
|
virtual void SetSunClamp(bool enable) = 0;
|
|
virtual void SetSignedShade(bool enable) = 0;
|
|
virtual float GetLosValue(int layer) = 0;
|
|
|
|
virtual ~IRender3D()
|
|
{
|
|
}
|
|
};
|
|
|
|
#endif // INCLUDED_IRENDER3D_H
|