~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to src/mesa/main/texstore.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
 
202
202
 
203
203
extern void
204
 
_mesa_generate_mipmap(GLcontext *ctx, GLenum target,
205
 
                      const struct gl_texture_unit *texUnit,
206
 
                      struct gl_texture_object *texObj);
207
 
 
208
 
 
209
 
extern void
210
 
_mesa_rescale_teximage2d(GLuint bytesPerPixel,
211
 
                         GLuint srcStrideInPixels,
212
 
                         GLuint dstRowStride,
213
 
                         GLint srcWidth, GLint srcHeight,
214
 
                         GLint dstWidth, GLint dstHeight,
215
 
                         const GLvoid *srcImage, GLvoid *dstImage);
216
 
 
217
 
extern void
218
 
_mesa_upscale_teximage2d(GLsizei inWidth, GLsizei inHeight,
219
 
                         GLsizei outWidth, GLsizei outHeight,
220
 
                         GLint comps, const GLchan *src, GLint srcRowStride,
221
 
                         GLchan *dest);
222
 
 
223
 
 
224
 
extern void
225
204
_mesa_get_teximage(GLcontext *ctx, GLenum target, GLint level,
226
205
                   GLenum format, GLenum type, GLvoid *pixels,
227
206
                   struct gl_texture_object *texObj,