Home | History | Annotate | Download | only in main

Lines Matching defs:MIPMAP

597 enum base_mipmap { BASE, MIPMAP };
605 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
606 * mipmap filtering isn't possible, but non-mipmap filtering is.
611 * \param bm either BASE or MIPMAP to indicate what's incomplete
676 incomplete(t, MIPMAP, "MAX_LEVEL (%d) < BASE_LEVEL (%d)",
711 /* Compute _MaxLevel (the maximum mipmap level we'll sample from given the
712 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state).
762 * know that all the mipmap levels are the right size and all cube
799 * Do mipmap consistency checking.
812 incomplete(t, MIPMAP, "minLevel > maxLevel");
843 incomplete(t, MIPMAP, "TexImage[%d] is missing", i);
847 incomplete(t, MIPMAP, "Format[i] != Format[baseLevel]");
851 incomplete(t, MIPMAP, "Border[i] != Border[baseLevel]");
855 incomplete(t, MIPMAP, "TexImage[%d] bad width %u", i,
860 incomplete(t, MIPMAP, "TexImage[%d] bad height %u", i,
865 incomplete(t, MIPMAP, "TexImage[%d] bad depth %u", i,
873 return; /* found smallest needed mipmap, all done! */