This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

29
Editor/Util/Image_DXTC.h Normal file
View File

@@ -0,0 +1,29 @@
////////////////////////////////////////////////////////////////////////////
//
// Crytek Engine Source File.
// Copyright (C), Crytek Studios, 2002.
// -------------------------------------------------------------------------
// File name: image_dxtc.h
// Version: v1.00
// Created: 5/9/2003 by Timur.
// Compilers: Visual Studio.NET
// Description:
// -------------------------------------------------------------------------
// History:
//
////////////////////////////////////////////////////////////////////////////
#ifndef __image_dxtc_h__
#define __image_dxtc_h__
#pragma once
class CImage_DXTC
{
public:
bool Load( const char *filename,CImage &outImage ); // true if success
CImage_DXTC();
~CImage_DXTC();
};
#endif // __image_dxtc_h__