mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-05-13 05:57:10 +03:00
21 lines
378 B
C++
21 lines
378 B
C++
#pragma once
|
|
|
|
#include "ddraw.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace glrage {
|
|
namespace ddraw {
|
|
|
|
class DebugUtils
|
|
{
|
|
public:
|
|
static void dumpInfo(DDSURFACEDESC& desc);
|
|
static void dumpBuffer(DDSURFACEDESC& desc,
|
|
void* buffer,
|
|
const std::string& path);
|
|
static std::string getSurfaceName(DDSURFACEDESC& desc);
|
|
};
|
|
|
|
} // namespace ddraw
|
|
} // namespace glrage
|