From: Gareth H. <ga...@va...> - 2001-02-26 16:59:41
|
Brian Paul wrote: > > Are you sure you have the most recent code? I fixed this problem a > while back. > > The current code in 3.5 is: > > destTex = _mesa_select_tex_image(ctx, texUnit, target, level); > > if (!destTex) { > gl_error(ctx, GL_INVALID_OPERATION, "glTexSubImage2D"); > return GL_TRUE; > } My mistake. The current 3.4.1-based DRI trunk code has this: destTex = texUnit->CurrentD[dimensions]->Image[level]; I obviously need to merge the 3.4.1 updates into my branch. Sorry for the false alarm. -- Gareth |