diff options
| author | Brian Paul <brianp@vmware.com> | 2009-10-27 16:37:25 -0600 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2009-10-27 17:00:31 -0600 | 
| commit | 3c716669211c00d106ded2df342b4a2525f4795b (patch) | |
| tree | 345f98946525c43dc47056bd0fec58c5588a4ed4 /src | |
| parent | 7fd8c6ca2a6e94d60c02e9c271b00c565c2464cb (diff) | |
intel: minor clean-up, comments
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/drivers/dri/intel/intel_tex_copy.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/mesa/drivers/dri/intel/intel_tex_copy.c b/src/mesa/drivers/dri/intel/intel_tex_copy.c index 0284687164..bb21dd5ed9 100644 --- a/src/mesa/drivers/dri/intel/intel_tex_copy.c +++ b/src/mesa/drivers/dri/intel/intel_tex_copy.c @@ -93,8 +93,7 @@ do_copy_texsubimage(struct intel_context *intel,                      GLint x, GLint y, GLsizei width, GLsizei height)  {     GLcontext *ctx = &intel->ctx; -   const struct intel_region *src = -      get_teximage_source(intel, internalFormat); +   const struct intel_region *src = get_teximage_source(intel, internalFormat);     if (!intelImage->mt || !src) {        if (INTEL_DEBUG & DEBUG_FALLBACKS) @@ -121,6 +120,7 @@ do_copy_texsubimage(struct intel_context *intel,        GLuint image_x, image_y;        GLshort src_pitch; +      /* get dest x/y in destination texture */        intel_miptree_get_image_offset(intelImage->mt,  				     intelImage->level,  				     intelImage->face, @@ -155,6 +155,7 @@ do_copy_texsubimage(struct intel_context *intel,  	 src_pitch = src->pitch;        } +      /* blit from src buffer to texture */        if (!intelEmitCopyBlit(intel,  			     intelImage->mt->cpp,  			     src_pitch, | 
