Lines Matching refs:MIPMAP
592 enum base_mipmap { BASE, MIPMAP };
600 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
601 * mipmap filtering isn't possible, but non-mipmap filtering is.
606 * \param bm either BASE or MIPMAP to indicate what's incomplete
671 incomplete(t, MIPMAP, "MAX_LEVEL (%d) < BASE_LEVEL (%d)",
706 /* Compute _MaxLevel (the maximum mipmap level we'll sample from given the
707 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state).
757 * know that all the mipmap levels are the right size and all cube
794 * Do mipmap consistency checking.
807 incomplete(t, MIPMAP, "minLevel > maxLevel");
838 incomplete(t, MIPMAP, "TexImage[%d] is missing", i);
842 incomplete(t, MIPMAP, "Format[i] != Format[baseLevel]");
846 incomplete(t, MIPMAP, "Border[i] != Border[baseLevel]");
850 incomplete(t, MIPMAP, "TexImage[%d] bad width %u", i,
855 incomplete(t, MIPMAP, "TexImage[%d] bad height %u", i,
860 incomplete(t, MIPMAP, "TexImage[%d] bad depth %u", i,
868 return; /* found smallest needed mipmap, all done! */