Multitexturing ...

what is the differents between
GL_ARB_multitexture and GL_SGIS_multitexture ?

Which should i use ?

thanks!

Use the ARB version. In general, always use the ARB version when dealing with extensions

You can’t use the sgis ones with register-combiners for example.
But you can mix them if you don’t use that. (on nVidia)

The main difference is the ability to multicast texture coordinates. Using the ARB extension you must supply texture coordinates for each texture even if they are the same. With the SGI extension you can send the same texture coordinates to multiple texture units by sending the coordinates once.

[This message has been edited by dorbie (edited 06-10-2002).]