2
0

LoadTGA.h 229 B

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