Home | History | Annotate | Download | only in main

Lines Matching refs:Image

211          if (texObj->Image[face][i]) {
212 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i]);
293 struct gl_texture_image *texImage = texObj->Image[i][j];
474 baseImage = t->Image[0][baseLevel];
476 /* Always need the base level image */
478 incomplete(t, BASE, "Image[baseLevel=%d] == NULL", baseLevel);
497 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state).
553 * Note: we know that the image's width==height (we enforce that
559 assert(t->Image[face][baseLevel] == NULL ||
560 t->Image[face][baseLevel]->Width2 ==
561 t->Image[face][baseLevel]->Height2);
562 if (t->Image[face][baseLevel] == NULL ||
563 t->Image[face][baseLevel]->Width2 != baseImage->Width2) {
588 /* Get the base image's dimensions */
595 /* Compute the expected size of image at level[i] */
609 const struct gl_texture_image *img = t->Image[face][i];
639 if (img->Width2 != t->Image[0][i]->Width2 ||
640 img->Height2 != t->Image[0][i]->Height2) {
641 incomplete(t, MIPMAP, "CubeMap Image[n][i] bad size");
674 img0 = texObj->Image[0][baseLevel];
682 img = texObj->Image[face][baseLevel];
802 /* initialize level[0] texture image */
838 const struct gl_texture_image *img = texObj->Image[face][level];
1031 * Check if the given texture object is bound to any texture image units and
1427 struct gl_texture_image *image;
1438 * <dim> is the size of the dimension of the texture image, and <b> is
1439 * the size of the border of that texture image, otherwise
1443 image = t->Image[0][level];
1444 if (image) {
1470 xBorder = image->Border;
1473 imageWidth = image->Width;
1478 xBorder = image->Border;
1481 imageWidth = image->Width;
1482 imageHeight = image->Height;
1489 xBorder = image->Border;
1490 yBorder = image->Border;
1492 imageWidth = image->Width;
1493 imageHeight = image->Height;
1498 xBorder = image->Border;
1499 yBorder = image->Border;
1501 imageWidth = image->Width;
1502 imageHeight = image->Height;
1503 imageDepth = image->Depth;
1506 xBorder = image->Border;
1507 yBorder = image->Border;
1508 zBorder = image->Border;
1509 imageWidth = image->Width;
1510 imageHeight = image->Height;
1511 imageDepth = image->Depth;