You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
757 B
35 lines
757 B
//====== Copyright c 1996-20013, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef IRENDERCAPTURECONFIGURATION_H
|
|
#define IRENDERCAPTURECONFIGURATION_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
class ITexture;
|
|
class IVRenderView;
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Generic interface to capture shadow in a render target
|
|
//
|
|
|
|
class CRenderCaptureConfigurationState
|
|
{
|
|
public:
|
|
FlashlightState_t m_renderFlashlightState;
|
|
VMatrix m_renderMatrixWorldToShadow;
|
|
ITexture *m_pFlashlightDepthTexture;
|
|
ITexture *m_pDummyColorBufferTexture;
|
|
IVRenderView *m_pIVRenderView;
|
|
};
|
|
|
|
|
|
#endif // IRENDERCAPTURECONFIGURATION_H
|
|
|