The playstation-portable tag has no wiki summary.
4
votes
4answers
347 views
Calculate vertices of a circle
I am having a simple program, it draws a circle :/
This works fine...
for (k = 1; k < n+1+1; k++){
vertices[k].color = GU_COLOR( 0.0f, 0.0f, 1.0f, 0.0f );
vertices[k].x = cos_d( 360 - ((k-1) * ...
4
votes
2answers
696 views
Indie development for Sony PSP?
I was wondering if there are some PSP programmers here that could share their opinions with me. I'm an iPhone/iPod indie game dev right now ( I also develop non game apps , but I really love games ). ...
3
votes
1answer
303 views
3
votes
10answers
1k views
GUI system development resources?
Could someone recommend any good resources for creating Graphics User Interfaces, preferably in C/C++?
Currently my biggest influence is 3DBuzz.com's C++/OpenGL VTMs (Video Training Modules). While ...
2
votes
4answers
233 views
has anyone tried designing a webpage for psp?
I'm trying to make a personal bible for my psp
(I tried googling but the only bible version I've seen on my skimming is on KJV and I'm trying to make mine have 3 versions namely TNIV, NLT and ...
2
votes
6answers
6k views
C Image Library
Can anyone recommend a decent C image library?
I'm after loaders for bmp, gif, jpg, png and tga.
I want to use this for programming my Sony Playstation Portable, so opensource would be very handy.
...
1
vote
4answers
528 views
Help on Porting a SIP library to PSP
I'm currently trying to port a SIP stack library (pjSIP) to the PSP Console (using the PSPSDK toolchain), but I'm having too much trouble with the makefiles (making the proper changes and solving ...
0
votes
1answer
208 views
How to make a lua app for PSP?
I am trying to use Luaplayer HM v2 on my PSP, but I am unable to make a simple Helo World app.
I have tried a lot of thing's but it simply doesn't work.
All tutorials, app that I found are for ...
0
votes
1answer
363 views
Collision problems with OSlib for psp in C++
Im using oslib with the pspsdk toolchain and for some reason this doesnt work the way I think it would
float spritewidth = sprite->stretchX;
float spriteheight = sprite->stretchY;
float ...
-1
votes
2answers
465 views
Loading image into an array
How would I load certain images into an array set like
Map = ( ( 1, 1, 1 ), ( 2, 2, 2 ), ( 3, 3, 3 ) )
I can put
images into variables like so
one = oslLoadImageFile("one.png", OSL_IN_RAM, ...