GCM commands - Printable Version +- RPCS3 Forums (https://forums.rpcs3.net) +-- Forum: Support & Issues (https://forums.rpcs3.net/forumdisplay.php?fid=17) +--- Forum: Support (https://forums.rpcs3.net/forumdisplay.php?fid=18) +--- Thread: GCM commands (/showthread.php?tid=159101) |
RE: GCM commands - Ekaseo - 03-17-2014 could i plz ask some1 to implement only one gcm function, cellGcmsetTexture_BorderColor? its the only function a game wants to display some output, it runs at stable 20fps. the games is Dustforce NPEB01878. i believe that the game will run like arkedo series swap. (to ask for spurs would be too much, but at least this one gcm command) RE: GCM commands - Ekaseo - 03-17-2014 (03-17-2014, 01:26 PM)AlexAltea Wrote:(03-17-2014, 01:21 PM)Ekaseo Wrote: could i plz ask some1 to implement only one gcm function? its the only function a game wants to display some output, it runs at stable 20fps. the games is Dustforce NPEB01878. some1 pretty please . is it really such a pain? RE: GCM commands - logan - 03-17-2014 (03-17-2014, 02:07 PM)Ekaseo Wrote:(03-17-2014, 01:26 PM)AlexAltea Wrote:(03-17-2014, 01:21 PM)Ekaseo Wrote: could i plz ask some1 to implement only one gcm function? its the only function a game wants to display some output, it runs at stable 20fps. the games is Dustforce NPEB01878. hahahaha,it could be. RE: GCM commands - ssshadow - 03-17-2014 And cellGcmSetZcullStatsEnable is probably the only thing keeping Disgaea 4 and D2 from running. The thing is, like AlexAltea said, the gcm stuff requires some pretty firm knowledge of how PS3 graphics works, and probably graphics in general. I don't think many people have the required know-how. Maybe DH or someone could do it, but they seem busy with other very important tasks. tl;dr, give it time, someone will do it, eventually. And another thing: Although random gcm commands and such may prevent a few games from going further right now, far bigger things prevent like 80 % of all games from even being loadable. That is probably more important, and maybe necessary even for most of the loadable games at some point. For example the event flag stuff that Nekotekina is working on now. It made Atelier Escha & Logy Alchemists of the Dusk Sky go from nothing to a white gsframe RE: GCM commands - twdarkeh - 03-17-2014 And just because it's the only thing showing as needed, things like this have a bad habit of you fixing one thing just to find out it's actually 100 more things that you need. RE: GCM commands - elisha464 - 03-17-2014 actually the border color function is not that important its just to set the border color of a texture (if I remember correctly) and I'm pretty sure opengl doesn't supprt it (I'll try to check again) anyway, its not that important because its only related to textures and it wont effect games like you think (i.e games will start because of it) RE: GCM commands - woody2014 - 03-17-2014 (03-17-2014, 06:31 PM)elisha464 Wrote: actually the border color function is not that importantif you need information on ps3 api then this guy is a good place to start i`m not a programmer I just thought it might help Eric Lengyel RE: GCM commands - kacek - 03-17-2014 (03-17-2014, 06:31 PM)elisha464 Wrote: actually the border color function is not that importanti think OpenGL supports this function(in version 1.1, is this backward compatible?). It's used as a parameter of glTexParameter. It's named GL_TEXTURE_BORDER_COLOR. Quote:GL_TEXTURE_BORDER_COLOR source: here maybe i could implement it, but i don't know where to put this (in GLGSRender.cpp near other glTexParameteri?) and how to dispatch it from RSXThread. RE: GCM commands - elisha464 - 03-17-2014 I'll do it, soon enough but you are welcome to help if you see me slacking RE: GCM commands - Ekaseo - 03-17-2014 (03-17-2014, 09:32 PM)kacek Wrote: maybe i could implement it, but i don't know where to put this (in GLGSRender.cpp near other glTexParameteri?) and how to dispatch it from RSXThread. you can fork the repo and experiment with it |