Home | History | Annotate | Download | only in main

Lines Matching refs:MIPMAP

390 enum base_mipmap { BASE, MIPMAP };
398 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
399 * mipmap filtering isn't possible, but non-mipmap filtering is.
404 * \param bm either BASE or MIPMAP to indicate what's incomplete
496 /* Compute _MaxLevel (the maximum mipmap level we'll sample from given the
497 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state).
544 * know that all the mipmap levels are the right size and all cube
571 * Do mipmap consistency checking.
612 incomplete(t, MIPMAP, "TexImage[%d] is missing", i);
616 incomplete(t, MIPMAP, "Format[i] != Format[baseLevel]");
620 incomplete(t, MIPMAP, "Border[i] != Border[baseLevel]");
624 incomplete(t, MIPMAP, "TexImage[%d] bad width %u", i, img->Width2);
628 incomplete(t, MIPMAP, "TexImage[%d] bad height %u", i, img->Height2);
632 incomplete(t, MIPMAP, "TexImage[%d] bad depth %u", i, img->Depth2);
641 incomplete(t, MIPMAP, "CubeMap Image[n][i] bad size");
649 return; /* found smallest needed mipmap, all done! */