linutotalx.blogg.se

Source sdk custom textures
Source sdk custom textures






It currently supports DDS9 textures (and compression), PNG, JPEG, TGA, BMP, and GIF formats. This is a C++ library for loading images. Unofficial OpenGL SDK has an image loading component called GL Image. GLI (OpenGL Image) is a small cross-platform C++ image library able to load DDS textures (DDS9 and DDS10), compressed or uncompressed. LibKTL also has functions to take a loaded KTX image and convert it into an OpenGL texture. The KTX format is closely related to OpenGL, but not used by most tools.

  • libktx: Library for the KTX file format.
  • As with libpng, other libraries use libjpg to handle JPEG.
  • libjpg: A library for loading JPEG (or JPG) files.
  • libspng: An alternative to libpng with a simple C API.
  • Many other libraries use this to handle PNG.
  • libpng: The official library for loading PNG files.
  • lodepng: Very small library for loading PNG files without any dependencies.
  • source sdk custom textures source sdk custom textures

    With the exception of libktx, they neither know nor care about loading it into OpenGL Textures. Note: These libraries only load the image data into memory.








    Source sdk custom textures