ok, is clear now.
thanks
Search found 6 matches
- Wed Oct 05, 2005 6:18 am
- Forum: PSP Development
- Topic: sceGuOffset
- Replies: 4
- Views: 1688
- Wed Oct 05, 2005 5:28 am
- Forum: PSP Development
- Topic: sceGuOffset
- Replies: 4
- Views: 1688
Thanks for the reply, in fact yes that's what I was thinking too, but then it seems that the command is defining exactly the same as the setup of the viewport command that is usually following the GU offset: sceGuViewport(2048,2048,SCR_WIDTH,SCR_HEIGHT); the viewport command has the centerX and cent...
- Wed Oct 05, 2005 4:14 am
- Forum: PSP Development
- Topic: sceGuOffset
- Replies: 4
- Views: 1688
sceGuOffset
I started developing some samples to get used to the GU, I have some code running, however there is a line that is comming back in every sample but I do not quit understand it (and I hate using lines I do not understand): sceGuOffset(2048 - (SCR_WIDTH/2),2048 - (SCR_HEIGHT/2)); What is the meaning o...
- Sun Oct 02, 2005 7:17 pm
- Forum: PSP Development
- Topic: Texture Blending
- Replies: 4
- Views: 1610
yep, seems cool, I just found an article talking about geomipmapping and geoclipmaps, this seems to be the way to go on nowadays hardware. (I used to program on pocketpc devices with no hardware acceleration at all, so I'm used to doing all the 3d calcs on the cpu. looks like I need some reorientati...
- Sun Oct 02, 2005 7:01 pm
- Forum: PSP Development
- Topic: Texture Blending
- Replies: 4
- Views: 1610
I can tell you right now that ROAM is NOT the right algorithm for any modern graphics hardware, it's been dead for the last 5 years :) PSP is just like a modern gaming PC, only smaller: it has a VERY strong GPU compared to the CPU. You should therefore shift as much work as possible onto the GPU an...
- Sun Oct 02, 2005 5:48 pm
- Forum: PSP Development
- Topic: Texture Blending
- Replies: 4
- Views: 1610
Texture Blending
I am a bit lost in how exactly to use the texture blending function GU_TFX_BLEND. I am working on a ROAM implementation for rendering terrain. Adding blended textures would be awesome (like grass, rock, snow). Is there any sample showing how to deal with this function or anyone who has input in how ...