mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
26 lines
599 B
C++
26 lines
599 B
C++
#pragma once
|
|
|
|
#include "Common/CompatPtr.h"
|
|
#include "DDraw/Surfaces/Surface.h"
|
|
|
|
namespace DDraw
|
|
{
|
|
class PrimarySurface : public Surface
|
|
{
|
|
public:
|
|
virtual ~PrimarySurface();
|
|
|
|
template <typename TDirectDraw, typename TSurface, typename TSurfaceDesc>
|
|
static HRESULT create(CompatRef<TDirectDraw> dd, TSurfaceDesc desc, TSurface*& surface);
|
|
|
|
static const DDSURFACEDESC2& getDesc();
|
|
static CompatPtr<IDirectDrawSurface7> getPrimary();
|
|
|
|
static CompatWeakPtr<IDirectDrawPalette> s_palette;
|
|
static PALETTEENTRY s_paletteEntries[256];
|
|
|
|
private:
|
|
virtual void createImpl() override;
|
|
};
|
|
}
|