/usr/include/gli/load_ktx.hpp is in libgli-dev 0.8.2.0+ds1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /// @brief Include to load KTX textures from files or memory.
/// @file gli/load_ktx.hpp
#pragma once
#include "texture.hpp"
namespace gli
{
/// Loads a texture storage_linear from KTX file. Returns an empty storage_linear in case of failure.
///
/// @param Path Path of the file to open including filaname and filename extension
texture load_ktx(char const* Path);
/// Loads a texture storage_linear from KTX file. Returns an empty storage_linear in case of failure.
///
/// @param Path Path of the file to open including filaname and filename extension
texture load_ktx(std::string const& Path);
/// Loads a texture storage_linear from KTX memory. Returns an empty storage_linear in case of failure.
///
/// @param Data Pointer to the beginning of the texture container data to read
/// @param Size Size of texture container Data to read
texture load_ktx(char const* Data, std::size_t Size);
}//namespace gli
#include "./core/load_ktx.inl"
|