st/mesa: updated comments for st_texture_image_map()
authorBrian Paul <brianp@vmware.com>
Mon, 3 May 2010 21:47:29 +0000 (15:47 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 3 May 2010 21:47:29 +0000 (15:47 -0600)
src/mesa/state_tracker/st_texture.c

index be450084ed8ca0c450659cc32f8101109fafea1e..6a42789b824f259ea1a0420d95d13845428363c5 100644 (file)
@@ -125,10 +125,12 @@ st_texture_match_image(const struct pipe_resource *pt,
 
 
 /**
- * Map a teximage in a mipmap texture.
- * \param row_stride  returns row stride in bytes
- * \param image_stride  returns image stride in bytes (for 3D textures).
- * \return address of mapping
+ * Map a texture image and return the address for a particular 2D face/slice/
+ * layer.  The stImage indicates the cube face and mipmap level.  The slice
+ * of the 3D texture is passed in 'zoffset'.
+ * \param usage  one of the PIPE_TRANSFER_x values
+ * \param x, y, w, h  the region of interest of the 2D image.
+ * \return address of mapping or NULL if any error
  */
 GLubyte *
 st_texture_image_map(struct st_context *st, struct st_texture_image *stImage,