2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2015 Patryk Nadrowski
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#ifndef IRR_C_OPEN_GL_RENDER_TARGET_H_INCLUDED
|
|
|
|
#define IRR_C_OPEN_GL_RENDER_TARGET_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
|
|
|
|
#ifdef _IRR_COMPILE_WITH_DIRECT3D_9_
|
|
|
|
|
|
|
|
#include "IRenderTarget.h"
|
|
|
|
|
|
|
|
#include "dimension2d.h"
|
|
|
|
#include "os.h"
|
|
|
|
|
|
|
|
#include <d3d9.h>
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace video
|
|
|
|
{
|
|
|
|
|
|
|
|
class CD3D9Driver;
|
|
|
|
|
|
|
|
class CD3D9RenderTarget : public IRenderTarget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CD3D9RenderTarget(CD3D9Driver* driver);
|
|
|
|
virtual ~CD3D9RenderTarget();
|
|
|
|
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setTextures(ITexture* const * textures, u32 numTextures, ITexture* depthStencil, const E_CUBE_SURFACE* cubeSurfaces, u32 numCubeSurfaces) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
const core::dimension2d<u32>& getSize() const;
|
|
|
|
|
|
|
|
IDirect3DSurface9* getSurface(u32 id) const;
|
|
|
|
|
|
|
|
u32 getSurfaceCount() const;
|
|
|
|
|
|
|
|
IDirect3DSurface9* getDepthStencilSurface() const;
|
|
|
|
|
|
|
|
void releaseSurfaces();
|
|
|
|
|
|
|
|
void generateSurfaces();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
core::dimension2d<u32> Size;
|
|
|
|
|
2021-08-26 16:09:35 +02:00
|
|
|
core::array<IDirect3DSurface9*> Surfaces;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
IDirect3DSurface9* DepthStencilSurface;
|
|
|
|
|
|
|
|
CD3D9Driver* Driver;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|