removed git history

This commit is contained in:
DrPerkyLegit
2026-05-16 11:30:28 -04:00
commit afdf1d188c
2384 changed files with 416681 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
#include "stdafx.h"
#include "MemTexture.h"
MemTexture::MemTexture(const wstring& _url, PBYTE pbData,DWORD dwBytes, MemTextureProcessor *processor)
{
// 4J - added
count = 1;
id = -1;
isLoaded = false;
ticksSinceLastUse = 0;
// 4J - TODO - actually implement
// load the texture, and process it
//loadedImage=Textures::getTexture()
// 4J - remember to add deletes in here for any created BufferedImages when implemented
loadedImage = new BufferedImage(pbData,dwBytes);
if(processor==nullptr)
{
}
else
{
//loadedImage=processor.process(ImageIO.read(huc.getInputStream()));
}
}
MemTexture::~MemTexture()
{
delete loadedImage;
}