Recent content by ikari

  1. I

    Ikari Sdl With Gles Isnt Working

    I've recompiled the lib with OpenGL ES support, then it works. 1. You have to rebuild the SDL lib to enable OpenGL ES. (You have to copy gl.h and egl.h to your toolchain's "include/GLES" directory.) ./configure --host=(arm-your-toolchain) --build=(arch) --enable-pthreads --enable-pthread-sem...
  2. I

    Ikari Sdl With Gles Isnt Working

    For Caanoo, I don't implemented it yet. Sorry. (It maybe available until next week.)
  3. I

    Qtopia And Zaurus Apps

    http://dl.openhandhelds.org/cgi-bin/gp2x.cgi?0,0,0,0,15,2073 You can try this. It works with some Zaurus ipks.
  4. I

    Copy 320X240 Buffer To 240X320 Screen

    Add #include <linux/i2c.h> on your SDL_video.c.
  5. I

    Copy 320X240 Buffer To 240X320 Screen

    There are two sorts of tearing, diagonal and vertical. When you're using firmware's default 320x240 mode, you can see diagonal one, and when you're using screen rotation, you can see vertical one. When you're using "Fast" library, you can see more vertical lines than "Normal" library, and it...
  6. I

    Copy 320X240 Buffer To 240X320 Screen

    It's faster than normal but slightly slower than firmware's SDL. Belows are result of simple screen filling test for measure drawing performance. (with mmuhack and ram timing tweak) Normal ver : Max 280Frames per sec Fast ver : Max 470Frames per sec Firmware's SDL : Max 520Frames per sec...
  7. I

    Copy 320X240 Buffer To 240X320 Screen

    Many of changes are for developers. Such as OpenGL ES development and using 3D/YUV memory for alloc SDL_Surface on non OpenGL mode. For more information, see README.gp2xwiz file on source tarball.(Sorry for my poor English..) (http://dl.openhandhelds.org/cgi-bin/wiz.cgi?0,0,0,0,46,272) Currently...
  8. I

    Copy 320X240 Buffer To 240X320 Screen

    I've uploaded bug fixed version that may help you. http://dl.openhandhelds.org/cgi-bin/wiz.cgi?0,0,0,0,23,271
  9. I

    Copy 320X240 Buffer To 240X320 Screen

    Exophase; Well, I'm not sure. But I'm also working about it. Currently I'm replacing "/dev/fb0" to "/dev/mem" for full hardware access.
  10. I

    Copy 320X240 Buffer To 240X320 Screen

    Thanks everybody! Now I've successfully modified SDL library to eliminate diagonal tearing with it. http://dl.openhandhelds.org/cgi-bin/wiz.cgi?0,0,0,0,46,272
  11. I

    G_Ether + Rndis + Windoze

    Well, I can't explain it enough because I'm not good at linux kernel and USB driver. It's hardware limitation? or can be modified on kernel source?
  12. I

    G_Ether + Rndis + Windoze

    Well, I've also readed ether.c and lf1000_udc.c. RNDIS needs 4 usb endpoints(for control, in, out, status) but lf1000_udc.h says that LF1000(Pollux) supports only three(control, in, out). So ether.c's configuration codes of status endpoint are also disabled for LF1000(Pollux). *...
Back
Top