mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
23 lines
362 B
C++
23 lines
362 B
C++
#include <ddraw.h>
|
|
|
|
namespace DDraw
|
|
{
|
|
class LogUsedResourceFormat
|
|
{
|
|
public:
|
|
LogUsedResourceFormat(const DDSURFACEDESC2& desc, IUnknown*& surface);
|
|
~LogUsedResourceFormat();
|
|
|
|
private:
|
|
DDSURFACEDESC2 m_desc;
|
|
IUnknown*& m_surface;
|
|
};
|
|
|
|
class SuppressResourceFormatLogs
|
|
{
|
|
public:
|
|
SuppressResourceFormatLogs();
|
|
~SuppressResourceFormatLogs();
|
|
};
|
|
}
|