|
Post by Darkjester on Aug 30, 2008 20:32:44 GMT -5
Hello everyone!  Would anybody please enlighten me on the structure and how to use the freebasic plugin sdk?
|
|
|
Post by DJLinux on Aug 31, 2008 8:55:08 GMT -5
i have curently no fun to help but if you can read the ToolBox dll sourcecode there are an example of TYPE take a look to the part of the FILE I/O dialog's
Joshy
|
|
|
Post by Darkjester on Aug 31, 2008 13:21:11 GMT -5
Thnx I do have a question as to what these functions do--RFC,RIC,RFF,RIF And could you explain how this sub works then i can undersand enough to use the SDK Thnx for you help 
|
|
|
Post by Darkjester on Sept 3, 2008 16:20:04 GMT -5
Im working on Vertex, Normal, Texture coordinate plugin for vertex buffers and such. But i have a problem i cant get it to get the proper data. So ive kinda faked it by making the plug just do a sub im trying to do this Function glvertexpointer(size,typet,sizee,pointer) If typet = gl_float then glvertexpointer(size,gl_float,size,pointer) elseif typet = gl_double then glvertexpointer(size,gl_double,size,pointer) elseif typet = gl_int then glvertexpointer(size,gl_int,size,pointer) endif return glvertexpointer(size,typet,sizee,pointer) end function
I need a way to simplify this and i need to make it register the pointer to the address properly and to determine the type of data in the pointer with the directives Gl_int, gl_double and so forth.
Any ideas?
|
|