Graphics() flags

BlitzMax Forums/BlitzMax Beginners Area/Graphics() flags

ErikT(Posted 2012) [#1]
Hello.

I'm using Monkeymax to convert some Monkey code to Blitzmax. Everything works fine except the image filtering flags don't seem to carry over so I end up with a blurry mess. Is there a way to set filtering flags in Graphics?


Oddball(Posted 2012) [#2]
I don't use Monkey so not sure exactly what you are after, but is it something like AutoImageFlags?


col(Posted 2012) [#3]
Hiya,

I dont use Monkey either, but the filtering flags are tied into the Images used by TImage, not tied to the graphics parameter.

Oddballs suggestion is the area to look into.


ErikT(Posted 2012) [#4]
Yeah, I was looking for an easy way to set image flags once at the start of the code to have em applied to all images, and AutoImageFlags did the trick! Thanks :)