mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//===========================================================================//
|
|
|
|
#undef PROTECTED_THINGS_ENABLE // prevent warnings when windows.h gets included
|
|
|
|
#include "shaderapibase.h"
|
|
#include "shaderapi/ishaderutil.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// The Base implementation of the shader render class
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// constructor, destructor
|
|
//-----------------------------------------------------------------------------
|
|
CShaderAPIBase::CShaderAPIBase()
|
|
{
|
|
}
|
|
|
|
CShaderAPIBase::~CShaderAPIBase()
|
|
{
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Methods of IShaderDynamicAPI
|
|
//-----------------------------------------------------------------------------
|
|
void CShaderAPIBase::GetCurrentColorCorrection( ShaderColorCorrectionInfo_t* pInfo )
|
|
{
|
|
g_pShaderUtil->GetCurrentColorCorrection( pInfo );
|
|
}
|
|
|
|
|