Bugs

Blitz3D Forums/Blitz3D Programming/Bugs

Yue(Posted 2012) [#1]
I need someone for guidance in developing my project I received a report that on March 10 computers have errors, that is something strange happens and the question is how to manage this, that is apparently on my computer all goes well, but not in others.

That is, how do I set the requirements for the application to run properly.


xlsior(Posted 2012) [#2]
you can make some educated guesses (e.g. figure out more or less how much videomemory is necesary by adding up the sizes of all your images, rounded up to the nearest power-of-two, times 4 (32 bit + alpha)

e.g. an image that's 512x512 pixels takes up 512x512x4 bytes of video RAM. An image that's 400x200 pixels takes up 512x256x4 bytes of video RAM.

But in the end, the only real way to figure out the minimum specifications is to run on on different computers, and see what the slowest / low end machine is that things still run 'acceptable', and call that your minimum requirement.