I'm coming from Java background and for creating games I always used BufferStrategy for smoothing animations. However in Android I couldn't find BufferStrategy, so I decided to create my own. How would you implement a BufferStrategy? Pseudo-code is also ok, but I prefer a code in Android of course.
Asked
Active
Viewed 168 times
1
-
BufferStrategy in the broadest sense is simply an abstraction of related os functionalities and as such can not be implemented by yourself. – Sam Nov 05 '16 at 20:50
-
?? I'm using BufferStrategy in my Java apps. It's really straightforward. What do you mean? – Frecklefoot Oct 31 '18 at 21:27