yaoshaojun / grafx2

Automatically exported from code.google.com/p/grafx2
0 stars 0 forks source link

Remove old unused functions #32

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Some functions (mostly in op_asm.c) are not used anymore because we 
disabled "assembly optimisations" (and there is no assembly code anymore). 
We should find and remove them, however, some of their C counterparts are 
broken (Floyd Steinberg dithering doesn't look at all how it should, for 
example.
So, maybe some of them would be handy to have around in some place ...

Original issue reported on code.google.com by pulkoma...@gmail.com on 12 Oct 2008 at 4:36

GoogleCodeExporter commented 9 years ago

Original comment by pulkoma...@gmail.com on 24 Dec 2008 at 4:16

GoogleCodeExporter commented 9 years ago
Some other functions that are of no real use :

  * Wait_VBL (still called in some places, we have to find a good way to replace it)
  * Lire_octet (may be still used, but must be replaced by read_bytes. Different 
error handling in these two functions)

Original comment by pulkoma...@gmail.com on 4 Jan 2009 at 8:47

GoogleCodeExporter commented 9 years ago
Wait_VBL can probably be replaced by SDL_Delay(20000) in most cases. Maybe we 
can do 
something better for the DESSIN_DISCONTINU (SDL_GetTicks+comparison).
None of the calls are really critical.

Original comment by pulkoma...@gmail.com on 14 Jan 2009 at 4:42

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago

Original comment by pulkoma...@gmail.com on 7 Apr 2009 at 1:09

GoogleCodeExporter commented 9 years ago
Fixed in r799

Original comment by pulkoma...@gmail.com on 12 May 2009 at 6:02