Search results

  1. D

    Learning Excerise Ken's Labyrinth

    in that case you might need to extract the needed portion from the sheet into a separate buffer, just for the upload.
  2. D

    Learning Excerise Ken's Labyrinth

    ES' pixelbuffer-describing abilities are not as flexible as desktop GL. why don't you upload the entire tile sheet, and use tex transforms (i.e. glMatrixMode(GL_TEXTURE)) to select individual tiles?
  3. D

    Learning Excerise Ken's Labyrinth

    Pickle, you can use whatever you like to draw a quad, i.e. tri list, tri strip, tri fan, and their indexed forms. just keep in mind the default vertex winding order for visible triangles is CCW. when composing a tristrip, though, you need to start with a CCW tri, then the 2nd one has to be CW...
  4. D

    Learning Ogl And Shaders? This Can Be Of Use To You

    thanks, Paeryn, useful results all around. re the missing bone parameter - looking at the first log that you posted from nths-jass, it appears the skeleton snapshot file is not loaded at all. could you try the latest version? i reshuffled some resources locations, and actually made the skinning...
  5. D

    Learning Ogl And Shaders? This Can Be Of Use To You

    Ah, that was a sneaky one. I was already considering an angry email to IMGTEC ; ) And you're very right i'd be interested in the fps. Which shader was that, btw - the default one (normal orientation visualizer)? Even so, fps is not bad for a 105K- and 28K-vertex heavy models, respectively (and...
  6. D

    Onee-sama Tasukete!

    nice! did not expect Pygame to handle blitting so well.
  7. D

    Learning Ogl And Shaders? This Can Be Of Use To You

    Once again nice sleuthing work, Paeryn! I hope you don't mind if I commited your changes to the Makefile and build_pandora.sh? This looks more or less correct now, except that from what i can tell from the shots, meshes all have inverted culling. Could you, please, try the following: * run the...
  8. D

    Pandora On A Trip To Bulgaria

    heya, peca. i'm bulgarian, but i happen to live abroad these days. i used to spend a lot of time in and around Obzor when i was younger (read: many moons ago) - it used to be one of the less 'developed' places on the Black Sea. I hear the whole Black Sea seaside is much different now, and not...
  9. D

    Learning Ogl And Shaders? This Can Be Of Use To You

    Paeryn, you did it man, that's it - ntsh-jass runs on the pandora! *performs jigga dance* The reason you didn't see anything at start up is that all the .mesh files originate from 3ds models, coming from a different model space, and they need the -other_up command-line parameter to orient...
  10. D

    Learning Ogl And Shaders? This Can Be Of Use To You

    heya, pandorians. i've got another little request. i've added rudimentary support for cross-compiling ntsh-jass for pandora, using paeryn's build options from the benchmark app above. i'd be grateful if somebody checked if the project actually builds for pandora now. what you'll need is lib3ds...
  11. D

    Pandora Pandora Sdk Installer With Opkg

    thanks, Hitnrun. that's good to know. i'd suggest you actually use the -fno-inline option, as dropping optimisations to -O1 is a tad harsh. apropos, apparently inlining was promoted to O2 in 4.4.x, as in 4.3.x it occurs only at O3.
  12. D

    Pandora Pandora Sdk Installer With Opkg

    could you elaborate there, please?
  13. D

    Avp Incoming...!

    Lonewolf9383, g_eglDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); will most likely fail with the current EGL libs found on pandora. if you want to see an example of a working EGL usecase on pandora, check the code linked in this thread.
  14. D

    Pandora Should Move To Android

    are we there yet?
  15. D

    Windows Ce For Pandora

    sorry to hijack, but i find this simply too amusing. so i went on and read the RTOS validation document for CE 6.0 that ms so boldly link to as an official proof of RT-ness. i'll just quote one paragraph from there: excuse me for not elaborating more here, but i'm still laughing my ass off...
  16. D

    What Is The Average Age Of The Pandora Pre-Orderers

    what? speak louder, son, i can't hear you. for the record, i'm in the next age group, but that group is largely superior ™, so Exophase can stop chuckling in the corner there *shakes fist*
  17. D

    What Is The Average Age Of The Pandora Pre-Orderers

    kids. am i reading the first option right as 'less than minus ten'?
  18. D

    How Best To Handle An Opengl Es / Sdl Conversion?

    future coolness is good. i assume that includes fancy animated lead-ins/outs for the individual tiles, etc. if that's the plan, then you can start with the following minimal functionality: create your quad mesh like this: struct Vertex { GLfloat pos[2]; GLfloat txc[2]...
Back
Top