mirror of
https://github.com/ENSL/NS.git
synced 2024-11-26 22:40:58 +00:00
12a122af14
-libcurl, libpng, zlib
23 lines
792 B
C++
23 lines
792 B
C++
//========= Copyright © 1996-2001, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
////// 2021 - Unused library removal. Uncomment and reinclude libpng and zlib to add back. ////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//#include "VGUI.h"
|
|
//#include "bitmappng.h"
|
|
//#include <memory.h>
|
|
//
|
|
//BitmapPNG::BitmapPNG(int width, int height, uchar* data)
|
|
//{
|
|
// setSize(width,height); //double-check that this allocates the memory we need!
|
|
// memcpy(_rgba,data,width*height*4);
|
|
//}
|
|
//
|
|
//BitmapPNG::~BitmapPNG(void) {}
|
|
|
|
|