-/* $Id: teximage.c,v 1.79 2001/02/26 18:24:55 brianp Exp $ */
+/* $Id: teximage.c,v 1.80 2001/02/27 22:16:27 brianp Exp $ */
/*
* Mesa 3-D graphics library
(*ctx->Driver.TexSubImage1D)(ctx, target, level, xoffset, width,
format, type, pixels, &ctx->Unpack,
texObj, texImage);
+ ctx->NewState |= _NEW_TEXTURE;
}
(*ctx->Driver.TexSubImage2D)(ctx, target, level, xoffset, yoffset,
width, height, format, type, pixels,
&ctx->Unpack, texObj, texImage);
+ ctx->NewState |= _NEW_TEXTURE;
}
width, height, depth,
format, type, pixels,
&ctx->Unpack, texObj, texImage );
+ ctx->NewState |= _NEW_TEXTURE;
}
ASSERT(ctx->Driver.CopyTexSubImage1D);
(*ctx->Driver.CopyTexSubImage1D)(ctx, target, level, xoffset, x, y, width);
+ ctx->NewState |= _NEW_TEXTURE;
}
ASSERT(ctx->Driver.CopyTexSubImage2D);
(*ctx->Driver.CopyTexSubImage2D)(ctx, target, level,
xoffset, yoffset, x, y, width, height);
+ ctx->NewState |= _NEW_TEXTURE;
}
(*ctx->Driver.CopyTexSubImage3D)(ctx, target, level,
xoffset, yoffset, zoffset,
x, y, width, height);
+ ctx->NewState |= _NEW_TEXTURE;
}
format, imageSize, data,
texObj, texImage);
}
+ ctx->NewState |= _NEW_TEXTURE;
}
format, imageSize, data,
texObj, texImage);
}
+ ctx->NewState |= _NEW_TEXTURE;
}
format, imageSize, data,
texObj, texImage);
}
+ ctx->NewState |= _NEW_TEXTURE;
}