Torque3D/Engine/lib/JoltPhysics/TestFramework/Image/LoadTGA.h
2026-06-06 16:07:23 +01:00

12 lines
293 B
C++

// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
// SPDX-License-Identifier: MIT
#pragma once
#include <Jolt/Core/Reference.h>
class Surface;
/// Image routines, loads a Targa (TGA) file.
Ref<Surface> LoadTGA(istream &inStream);