BM 1.20 + DX -> Filtering only possible if mipmap active. or do I remember something wrong?
Looks filtered to me...
Strict
Graphics 800, 600, 0
AutoMidHandle True
AutoImageFlags MASKEDIMAGE | FILTEREDIMAGE ' This is the default, but to make the point...
Local image:TImage=LoadImage(getenv_("BMXPATH") + "\doc\bmax120.png")
Repeat
Cls
SetRotation MilliSecs() / 100.0
DrawImage image, 400, 300
Flip
Until KeyHit(KEY_ESCAPE) Or AppTerminate()
End...I think there was a bug to do with the filtering and mipmapping flags being used together at one point (I can't remember the details), perhaps you're thinking of that?
Always thought mipmap was the flag that is part of autoflag (together with maskedimage) and filtering needs to be added additionally
Nope, definitely the other way round. I even checked BRLMax2D, just to make sure I wasn't going completely senile. ;o)