This file is indexed.

/usr/include/gli/save_kmg.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
28
29
30
31
32
33
34
/// @brief Include to save KMG textures to files or memory.
/// @file gli/save_kmg.hpp

#pragma once

#include "texture.hpp"

namespace gli
{
	/// Save a texture storage_linear to a KMG (Khronos Image) file.
	///
	/// @param Texture Source texture to save
	/// @param Path Path for where to save the file. It must include the filaname and filename extension.
	/// This function ignores the filename extension in the path and save to KMG anyway but keep the requested filename extension.
	/// @return Returns false if the function fails to save the file.
	bool save_kmg(texture const & Texture, char const * Path);

	/// Save a texture storage_linear to a KMG (Khronos Image) file.
	///
	/// @param Texture Source texture to save
	/// @param Path Path for where to save the file. It must include the filaname and filename extension.
	/// This function ignores the filename extension in the path and save to KMG anyway but keep the requested filename extension.
	/// @return Returns false if the function fails to save the file.
	bool save_kmg(texture const & Texture, std::string const & Path);

	/// Save a texture storage_linear to a KMG (Khronos Image) file.
	///
	/// @param Texture Source texture to save
	/// @param Memory Storage for the KMG container. The function resizes the containers to fit the necessary storage_linear.
	/// @return Returns false if the function fails to save the file.
	bool save_kmg(texture const & Texture, std::vector<char> & Memory);
}//namespace gli

#include "./core/save_kmg.inl"