2005-03-09 01:31:56 +00:00
|
|
|
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
2005-04-01 03:04:57 +00:00
|
|
|
|
#ifndef BITMAPPNG_H
|
|
|
|
|
#define BITMAPPNG_H
|
2005-03-09 01:31:56 +00:00
|
|
|
|
|
2005-04-01 03:04:57 +00:00
|
|
|
|
#include "vgui_bitmap.h"
|
2005-03-09 01:31:56 +00:00
|
|
|
|
|
2005-04-01 03:04:57 +00:00
|
|
|
|
class VGUIAPI BitmapPNG : public vgui::Bitmap
|
2005-03-09 01:31:56 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2005-04-01 03:04:57 +00:00
|
|
|
|
BitmapPNG(int width, int height, uchar* data);
|
|
|
|
|
virtual ~BitmapPNG(void);
|
|
|
|
|
private:
|
2005-03-09 01:31:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|