Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
 
 
 
 
 
 

38 lines
849 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef ICOLORCORRECTIONTOOLS_H
#define ICOLORCORRECTIONTOOLS_H
#ifdef _WIN32
#pragma once
#endif
namespace vgui
{
class Panel;
};
class IColorOperation;
abstract_class IColorCorrectionTools
{
public:
virtual void Init( void ) = 0;
virtual void Shutdown( void ) = 0;
virtual void InstallColorCorrectionUI( vgui::Panel *parent ) = 0;
virtual bool ShouldPause() const = 0;
virtual void GrabPreColorCorrectedFrame( int x, int y, int width, int height ) = 0;
virtual void UpdateColorCorrection( ) = 0;
virtual void SetFinalOperation( IColorOperation *pOp ) = 0;
};
extern IColorCorrectionTools *colorcorrectiontools;
#endif // COLORCORRECTIONTOOLS_H