I got an answer form the dutch webshop stating a few weeks until the next delivery.

Meanwhile could you give me some more info on what fpc i need and how i should set it up?

I brushed up my opengles unit (should be somewhere here) and got my first white triangle. (fpc op windows xp met opengleslite dll van imagination)

Colors do not work yet as i get confused by this:
[code=cpp]glColorPointer(4,VERTTYPEENUM,sizeof(VERTTYPE) * 7, (GLvoid*) (sizeof(VERTTYPE) * 3) /*The color starts after the 3 position values (x,y,z)*/);[/code]
How does that last (GLvoid*) need to be written in pascal? A pointer skipping the first 3 elements)
[EDIT]
Solved glcolorpointer call like this:
[code=pascal]glColorPointer(4,GL_FIXED,sizeof(glfixed) * 7, pglfixed(sizeof(glfixed) * 3)); //The color starts after the 3 position values (x,y,z)[/code]
[/EDIT]

(Confusing opengleslite fact is that it does not support floating point.)