Counter Strike : Global Offensive Source Code
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.
|
|
//========= Copyright � 1996-2013, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=====================================================================================//
#ifndef __SFUICHROMEHTMLIMAGE_H__
#define __SFUICHROMEHTMLIMAGE_H__
#include "scaleformuiimage.h"
//-----------------------------------------------------------------------------
// Purpose: sfuia
//-----------------------------------------------------------------------------
class ScaleformUIChromeHTMLImage : public ScaleformUIImage { public: ScaleformUIChromeHTMLImage( uint64 imageID, const byte* defaultRgba, int defaultWidth, int defaultHeight, ::ImageFormat defaultFormat, SF::GFx::TextureManager* pTextureManager );
bool LoadChromeHTMLImage( const byte* rgba, int width, int height, ::ImageFormat format );
private: uint64 m_imageID; };
#endif // __SFUICHROMEHTMLIMAGE_H__
|