Need an exemple of arb shader use

Hi,I need your help, i work on a project and i need to use ARB shaders.I only find exemples using GLSL on the net and i don't know how to use ARB shader inside Java3D.Does anyone have an exemple to show me how to use it (sample code)
[262 byte] By [Selkisa] at [2007-11-27 2:28:07]
# 1
http://developer.3dlabs.com/openGL2/specs/index.htmthird from the top;)
goddarda at 2007-7-12 2:39:44 > top of Java-index,Security,Cryptography...
# 2
Hi,Thanks for your answer.I work with JAVA3D and this article is for opengl in general, no ?You will probably think that I am a newbie but i have read everything and I am not able to use ARB files :(Can please help me. please.....
Selkisa at 2007-7-12 2:39:44 > top of Java-index,Security,Cryptography...
# 3

If we talk about shader programs (doesn't matter if fragment or vertex ones), they're different animals. You've got some 3D APIs like Direct3D, OpenGL, J3D (which is kinda operating on top of previous two), and now you've got shading languages that require to have some binding to the 3D APIs.

Direct3D has binding for HLSL (and also Cg from nVidia since these two shading languages are distinguished only formally I think), OpenGL has binding for GLSL. I choosed to use J3D API and Cg shading laguage, since both allow you to target your program on D3D or OGL. So, shading languages are "platform" independent (but read something about device profiles), it doesn't matter which 3D API you use if it has a way how to load shader program written in certain shading laguage.

goddarda at 2007-7-12 2:39:44 > top of Java-index,Security,Cryptography...