This file is indexed.

/usr/include/g3d/texture.h is in libg3d-dev 0.0.8-15.

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
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* $Id$ */

/*
    libg3d - 3D object loading library

    Copyright (C) 2005-2009  Markus Dahms <mad@automagically.de>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

#ifndef __G3D_TEXTURE_H__
#define __G3D_TEXTURE_H__

/**
 * SECTION:texture
 * @short_description: Texture loading and manipulation
 * @include: g3d/texture.h
 *
 * A texture is an image used in materials. Here are some helper functions,
 * mostly for cached loading of a #G3DImage.
 */

#include <g3d/types.h>

G_BEGIN_DECLS

/**
 * g3d_texture_load:
 * @context: a valid context
 * @filename: the file name of the texture
 *
 * Load a texture from a file. The type of file is determined by the file
 * extension.
 *
 * Returns: the texture image or NULL in case of an error.
 */
G3DImage *g3d_texture_load(G3DContext *context, const gchar *filename);

/**
 * g3d_texture_load_from_stream:
 * @context: a valid context
 * @model: a valid model or NULL
 * @stream: an open stream
 *
 * Load a texture image from a stream. The file type is determined by the
 * extension of the stream URI, so it should be valid. If @model is not NULL
 * the texture image is cached (or retrieved from cache if available).
 *
 * Returns: the texture image or NULL in case of an error.
 */
G3DImage *g3d_texture_load_from_stream(G3DContext *context, G3DModel *model,
	G3DStream *stream);

/**
 * g3d_texture_load_cached:
 * @context: a valid context
 * @model: a valid model
 * @filename: the file name of the texture to load
 *
 * Loads a texture image from file and attaches it to a hash table in the
 * model. On a second try to load this texture it is returned from cache.
 *
 * Returns: the texture image
 */
G3DImage *g3d_texture_load_cached(G3DContext *context, G3DModel *model,
	const gchar *filename);

/**
 * g3d_texture_free:
 * @texture: a texture image
 *
 * Frees all memory used by this texture image.
 */
void g3d_texture_free(G3DImage *texture);

/**
 * g3d_texture_prepare:
 * @texture: a texture image
 *
 * Resizes the image to dimensions which are a power of 2 to be
 * usable as an OpenGL texture.
 * (FIXME: unimplemented)
 *
 * Returns: TRUE on success, FALSE else
 */
gboolean g3d_texture_prepare(G3DImage *texture);

/**
 * g3d_texture_flip_y:
 * @texture: a texture image
 *
 * Mirror the image along the x axis - all y coordinates are inverted.
 *
 * Returns: TRUE on success, FALSE on error.
 */
gboolean g3d_texture_flip_y(G3DImage *texture);

/**
 * g3d_texture_merge_alpha:
 * @image: a texture image or NULL
 * @aimage: an image with alpha information
 *
 * Merges alpha information from @aimage into output image. If @image is NULL a
 * new image is created, else @image is returned with alpha from @aimage.
 *
 * Returns: a texture image or NULL in case of an error.
 */
G3DImage *g3d_texture_merge_alpha(G3DImage *image, G3DImage *aimage);

G_END_DECLS

#endif /* __G3D_TEXTURE_H__ */