LoadTGA.h 293 B

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