Search results

  1. slygamer

    GP2X Pascal Dev For Gp2x

    There is this thread on the Pascal Game Development forums about getting FPC built for use in cross-compiling to the GP2X.
  2. slygamer

    GP2X Problem With Gpu940

    I believe alpha blending is not yet supported in gpu940. There is no Z-buffer in gpu940, so your 2D polygons must be drawn after all your 3D polygons.
  3. slygamer

    How To Reset Root Password

    Sweet. Thanks. /etc/passwd contained this line at the top root:l.tXd184Ct5CQ:0:0:root:/root:/bin/sh Just removed everything between the first two colons. Actually, there was a file called passwd.OLD in there as well, which was the same file before the root password was changed.
  4. slygamer

    How To Reset Root Password

    For some strange reason, I changed the root password on my GP2X. I know what it is, but I now want to reset it back to what it was before, i.e. blank, empty, nothing. How do I do that?
  5. slygamer

    The Gp2x Toolchain Project Has Begun

    How many toolchains does a single handheld need? What is different about this toolchain to the several other toolchains that are currently available? ooPo, Open2X, devkitGP2X, gp2xsdk...
  6. slygamer

    Dev Board Dimensions?

    85.5mm x 100mm. Allow 5.5mm overhang at both of the short sides for the serial and JTAG connectors. Allow 1.5mm overhang for the USB connectors and 2.5mm for the RCA connectors. Mounting hole centres are 75.5mm x 92mm. Height is 14mm (allow an extra 2.5mm for solder connections).
  7. slygamer

    Networking Help

    Sometimes it just takes persistence. :)
  8. slygamer

    GP2X Blitter - The Code

    No, it's different. The dummy blit flushes the blitter's cache. The MMU hack allows the area of memory above 32MB to be cached in the 920's data cache, allowing quicker reads and writes. This also means that some data may not be actually written to memory (because it is still sitting in the...
  9. slygamer

    Networking Help

    When you setup the networking on the PC side, what address did you enter in the network properties? If you entered 10.1.0.1, then that is your PC's IP address that the GP2X can see. Double-click on My Computer, double-click on C:\. Do you see a folder called 'share' in there? Does it have...
  10. slygamer

    Networking Help

    Remember that everytime you turn on the GP2X, you have to start the Samba client again using "/sbin/insmod smbfs". This format of the smbmount command should work, assuming that you have the shared folder setup correctly on your PC. Are you using telnet or serial or get command-line access to...
  11. slygamer

    GP2X Gpu940...how To Start, And Compiling For Pc

    At 640x480, you have quadrupled the number of pixels that the renderer has to draw. This takes a lot longer than 320x240. Resizing 640x480 down to 320x240 using a 2x2 average to get anti-aliasing will not only use a sizable chunk of memory, but it is also going to slow your application down so...
  12. slygamer

    Networking Help

    What IP address did you give your GP2X? What IP address did you give your PC? What folder do you have shared do you have on your PC? What did you call the share on your PC?
  13. slygamer

    Play-asia Is Messing With Me Again :(

    Yes, you are right that it is presently February. Accurate observation on your part. However, it may surprise you that the next 26 days are also counted as being part of February.
  14. slygamer

    Networking Help

    Did you try this guide?
  15. slygamer

    Gpu940

    I've managed to get most of it compiled using MSYS and devkitGP2X. Mind you, it takes a bit of guesswork. After editing gp2xenv.sh to tell it to use devkitGP2X (and editing the parameters such as removing the -I parameters), confgp2x runs ok. I had to tell make what LD and GP2XDEVDIR were...
  16. slygamer

    Smudge Marks On Gp2x Casing

    Just be glad they're not Squidge marks. You never what what he might have been doing on that case.
  17. slygamer

    GP2X Gpu940...how To Start, And Compiling For Pc

    The samples provided with gpu940 do not use the OpenGL layer that rixed has made. If you use the GL headers provided, then you should be able to use at least the common OpenGL functions.
  18. slygamer

    GP2X Gpu940...how To Start, And Compiling For Pc

    It does work on PC. It uses shared memory and SDL instead of the 940T processor. Read the documentation it comes with and you would know that.
  19. slygamer

    Retail Interface Board Discussion!

    They're still using the pre-rendered concept for the box? Sheesh. When will the farce end? And when will the constant threads about the box end?
  20. slygamer

    GP2X A Decent Opengl Port For Gp2x At Any Time Soon?

    You're looking at the wrong piece of hardware then. gpu940 is the best we have at the moment, and that is not a full software OpenGL implementation either. It is quite limited in what it can do, but if you design within the constraints that it puts on you, then you can achieve some wonderful...
Back
Top