2004-11-10 17:56:03 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2004 Robert Osfield
|
2005-04-08 04:20:09 +08:00
|
|
|
* Copyright (C) 2003-2005 3Dlabs Inc. Ltd.
|
2003-07-15 18:45:46 +08:00
|
|
|
*
|
|
|
|
* This application is open source and may be redistributed and/or modified
|
|
|
|
* freely and without restriction, both in commericial and non commericial applications,
|
|
|
|
* as long as this copyright notice is maintained.
|
|
|
|
*
|
|
|
|
* This application is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
2005-04-08 04:20:09 +08:00
|
|
|
/* file: examples/osgglsl/GL2Scene.cpp
|
|
|
|
* author: Mike Weiblen 2005-03-30
|
2003-07-15 18:45:46 +08:00
|
|
|
*
|
|
|
|
* Compose a scene of several instances of a model, with a different
|
|
|
|
* OpenGL Shading Language shader applied to each.
|
|
|
|
*
|
|
|
|
* See http://www.3dlabs.com/opengl2/ for more information regarding
|
|
|
|
* the OpenGL Shading Language.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <osg/ShapeDrawable>
|
|
|
|
#include <osg/PositionAttitudeTransform>
|
|
|
|
#include <osg/Geode>
|
2003-10-05 19:30:54 +08:00
|
|
|
#include <osg/Node>
|
|
|
|
#include <osg/Material>
|
2003-07-15 18:45:46 +08:00
|
|
|
#include <osg/Notify>
|
2003-10-05 19:30:54 +08:00
|
|
|
#include <osg/Vec3>
|
|
|
|
#include <osg/Texture1D>
|
|
|
|
#include <osg/Texture2D>
|
|
|
|
#include <osg/Texture3D>
|
2003-07-15 18:45:46 +08:00
|
|
|
#include <osgDB/ReadFile>
|
|
|
|
#include <osgDB/FileUtils>
|
|
|
|
#include <osgUtil/Optimizer>
|
2005-04-08 04:20:09 +08:00
|
|
|
|
|
|
|
#include <osg/Program>
|
|
|
|
#include <osg/Shader>
|
|
|
|
#include <osg/Uniform>
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2005-04-13 22:31:25 +08:00
|
|
|
#include <iostream>
|
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
#include "GL2Scene.h"
|
|
|
|
#include "Noise.h"
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static osg::Image*
|
|
|
|
make3DNoiseImage(int texSize)
|
|
|
|
{
|
|
|
|
osg::Image* image = new osg::Image;
|
|
|
|
image->setImage(texSize, texSize, texSize,
|
|
|
|
4, GL_RGBA, GL_UNSIGNED_BYTE,
|
|
|
|
new unsigned char[4 * texSize * texSize * texSize],
|
|
|
|
osg::Image::USE_NEW_DELETE);
|
|
|
|
|
|
|
|
const int startFrequency = 4;
|
|
|
|
const int numOctaves = 4;
|
|
|
|
|
|
|
|
int f, i, j, k, inc;
|
|
|
|
double ni[3];
|
|
|
|
double inci, incj, inck;
|
|
|
|
int frequency = startFrequency;
|
|
|
|
GLubyte *ptr;
|
|
|
|
double amp = 0.5;
|
|
|
|
|
|
|
|
osg::notify(osg::INFO) << "creating 3D noise texture... ";
|
|
|
|
|
|
|
|
for (f = 0, inc = 0; f < numOctaves; ++f, frequency *= 2, ++inc, amp *= 0.5)
|
|
|
|
{
|
|
|
|
SetNoiseFrequency(frequency);
|
|
|
|
ptr = image->data();
|
|
|
|
ni[0] = ni[1] = ni[2] = 0;
|
|
|
|
|
|
|
|
inci = 1.0 / (texSize / frequency);
|
|
|
|
for (i = 0; i < texSize; ++i, ni[0] += inci)
|
|
|
|
{
|
|
|
|
incj = 1.0 / (texSize / frequency);
|
|
|
|
for (j = 0; j < texSize; ++j, ni[1] += incj)
|
|
|
|
{
|
|
|
|
inck = 1.0 / (texSize / frequency);
|
|
|
|
for (k = 0; k < texSize; ++k, ni[2] += inck, ptr += 4)
|
|
|
|
{
|
|
|
|
*(ptr+inc) = (GLubyte) (((noise3(ni) + 1.0) * amp) * 128.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
osg::notify(osg::INFO) << "DONE" << std::endl;
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
static osg::Texture3D*
|
|
|
|
make3DNoiseTexture(int texSize )
|
|
|
|
{
|
|
|
|
osg::Texture3D* noiseTexture = new osg::Texture3D;
|
|
|
|
noiseTexture->setFilter(osg::Texture3D::MIN_FILTER, osg::Texture3D::LINEAR);
|
|
|
|
noiseTexture->setFilter(osg::Texture3D::MAG_FILTER, osg::Texture3D::LINEAR);
|
|
|
|
noiseTexture->setWrap(osg::Texture3D::WRAP_S, osg::Texture3D::REPEAT);
|
|
|
|
noiseTexture->setWrap(osg::Texture3D::WRAP_T, osg::Texture3D::REPEAT);
|
|
|
|
noiseTexture->setWrap(osg::Texture3D::WRAP_R, osg::Texture3D::REPEAT);
|
|
|
|
noiseTexture->setImage( make3DNoiseImage(texSize) );
|
|
|
|
return noiseTexture;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static osg::Image*
|
|
|
|
make1DSineImage( int texSize )
|
|
|
|
{
|
|
|
|
const float PI = 3.1415927;
|
|
|
|
|
|
|
|
osg::Image* image = new osg::Image;
|
|
|
|
image->setImage(texSize, 1, 1,
|
|
|
|
4, GL_RGBA, GL_UNSIGNED_BYTE,
|
|
|
|
new unsigned char[4 * texSize],
|
|
|
|
osg::Image::USE_NEW_DELETE);
|
|
|
|
|
|
|
|
GLubyte* ptr = image->data();
|
|
|
|
float inc = 2. * PI / (float)texSize;
|
|
|
|
for(int i = 0; i < texSize; i++)
|
|
|
|
{
|
|
|
|
*ptr++ = (GLubyte)((sinf(i * inc) * 0.5 + 0.5) * 255.);
|
|
|
|
*ptr++ = 0;
|
|
|
|
*ptr++ = 0;
|
|
|
|
*ptr++ = 1;
|
|
|
|
}
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
static osg::Texture1D*
|
|
|
|
make1DSineTexture( int texSize )
|
|
|
|
{
|
|
|
|
osg::Texture1D* sineTexture = new osg::Texture1D;
|
|
|
|
sineTexture->setWrap(osg::Texture1D::WRAP_S, osg::Texture1D::REPEAT);
|
|
|
|
sineTexture->setFilter(osg::Texture1D::MIN_FILTER, osg::Texture1D::LINEAR);
|
|
|
|
sineTexture->setFilter(osg::Texture1D::MAG_FILTER, osg::Texture1D::LINEAR);
|
|
|
|
sineTexture->setImage( make1DSineImage(texSize) );
|
|
|
|
return sineTexture;
|
|
|
|
}
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// OpenGL Shading Language source code for the "microshader" example,
|
|
|
|
// which simply colors a fragment based on its location.
|
2003-07-15 18:45:46 +08:00
|
|
|
|
|
|
|
static const char *microshaderVertSource = {
|
2003-10-05 19:30:54 +08:00
|
|
|
"varying vec4 color;"
|
2003-07-15 18:45:46 +08:00
|
|
|
"void main(void)"
|
|
|
|
"{"
|
2003-10-05 19:30:54 +08:00
|
|
|
"color = gl_Vertex;"
|
2003-07-15 18:45:46 +08:00
|
|
|
"gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;"
|
|
|
|
"}"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *microshaderFragSource = {
|
2003-10-05 19:30:54 +08:00
|
|
|
"varying vec4 color;"
|
2003-07-15 18:45:46 +08:00
|
|
|
"void main(void)"
|
|
|
|
"{"
|
2004-01-03 17:06:52 +08:00
|
|
|
"gl_FragColor = clamp( color, 0.0, 1.0 );"
|
2003-07-15 18:45:46 +08:00
|
|
|
"}"
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
static osg::ref_ptr<osg::Group> rootNode;
|
2003-07-15 18:45:46 +08:00
|
|
|
|
|
|
|
// Create some geometry upon which to render GL2 shaders.
|
|
|
|
static osg::Geode*
|
|
|
|
CreateModel()
|
|
|
|
{
|
|
|
|
osg::Geode* geode = new osg::Geode();
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Sphere(osg::Vec3(0.0f,0.0f,0.0f),1.0f)));
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Cone(osg::Vec3(2.2f,0.0f,-0.4f),0.9f,1.8f)));
|
|
|
|
geode->addDrawable(new osg::ShapeDrawable(new osg::Cylinder(osg::Vec3(4.4f,0.0f,0.0f),1.0f,1.4f)));
|
|
|
|
return geode;
|
|
|
|
}
|
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
// Add a reference to the masterModel at the specified translation, and
|
|
|
|
// return its StateSet so we can easily attach StateAttributes.
|
|
|
|
static osg::StateSet*
|
|
|
|
ModelInstance()
|
|
|
|
{
|
|
|
|
static float zvalue = 0.0f;
|
|
|
|
static osg::Node* masterModel = CreateModel();
|
|
|
|
|
|
|
|
osg::PositionAttitudeTransform* xform = new osg::PositionAttitudeTransform();
|
|
|
|
xform->setPosition(osg::Vec3( 0.0f, -1.0f, zvalue ));
|
|
|
|
zvalue = zvalue + 2.2f;
|
|
|
|
xform->addChild(masterModel);
|
|
|
|
rootNode->addChild(xform);
|
|
|
|
return xform->getOrCreateStateSet();
|
|
|
|
}
|
|
|
|
|
|
|
|
// load source from a file.
|
2003-07-15 18:45:46 +08:00
|
|
|
static void
|
2005-04-08 04:20:09 +08:00
|
|
|
LoadShaderSource( osg::Shader* shader, const std::string& fileName )
|
2003-07-15 18:45:46 +08:00
|
|
|
{
|
2003-10-05 19:30:54 +08:00
|
|
|
std::string fqFileName = osgDB::findDataFile(fileName);
|
|
|
|
if( fqFileName.length() != 0 )
|
2003-07-15 18:45:46 +08:00
|
|
|
{
|
2005-04-08 04:20:09 +08:00
|
|
|
shader->loadShaderSourceFromFile( fqFileName.c_str() );
|
2003-07-15 18:45:46 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-10-05 19:30:54 +08:00
|
|
|
osg::notify(osg::WARN) << "File \"" << fileName << "\" not found." << std::endl;
|
2003-07-15 18:45:46 +08:00
|
|
|
}
|
2003-10-05 19:30:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// rude but convenient globals
|
|
|
|
|
2005-04-08 04:20:09 +08:00
|
|
|
static osg::Program* BlockyProgram;
|
|
|
|
static osg::Shader* BlockyVertObj;
|
|
|
|
static osg::Shader* BlockyFragObj;
|
|
|
|
|
|
|
|
static osg::Program* ErodedProgram;
|
|
|
|
static osg::Shader* ErodedVertObj;
|
|
|
|
static osg::Shader* ErodedFragObj;
|
2003-10-05 19:30:54 +08:00
|
|
|
|
2005-04-08 04:20:09 +08:00
|
|
|
static osg::Program* MarbleProgram;
|
|
|
|
static osg::Shader* MarbleVertObj;
|
|
|
|
static osg::Shader* MarbleFragObj;
|
2003-10-05 19:30:54 +08:00
|
|
|
|
2005-04-08 04:20:09 +08:00
|
|
|
static osg::Uniform* OffsetUniform;
|
|
|
|
static osg::Uniform* SineUniform;
|
|
|
|
static osg::Uniform* Color1Uniform;
|
|
|
|
static osg::Uniform* Color2Uniform;
|
2003-10-05 19:30:54 +08:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2004-11-10 17:56:03 +08:00
|
|
|
// for demo simplicity, this one callback animates all the shaders.
|
2003-10-05 19:30:54 +08:00
|
|
|
|
|
|
|
class AnimateCallback: public osg::NodeCallback
|
|
|
|
{
|
|
|
|
public:
|
2004-11-10 17:56:03 +08:00
|
|
|
AnimateCallback() : osg::NodeCallback(), _enabled(true) {}
|
2003-10-05 19:30:54 +08:00
|
|
|
|
|
|
|
virtual void operator() ( osg::Node* node, osg::NodeVisitor* nv )
|
|
|
|
{
|
|
|
|
if( _enabled )
|
|
|
|
{
|
|
|
|
float angle = 2.0 * nv->getFrameStamp()->getReferenceTime();
|
|
|
|
float sine = sinf( angle ); // -1 -> 1
|
|
|
|
float v01 = 0.5f * sine + 0.5f; // 0 -> 1
|
|
|
|
float v10 = 1.0f - v01; // 1 -> 0
|
|
|
|
|
2005-04-08 04:20:09 +08:00
|
|
|
OffsetUniform->set( osg::Vec3(0.505f, 0.8f*v01, 0.0f) );
|
|
|
|
SineUniform->set( sine );
|
|
|
|
Color1Uniform->set( osg::Vec3(v10, 0.0f, 0.0f) );
|
|
|
|
Color1Uniform->set( osg::Vec3(v01, v01, v10) );
|
2003-10-05 19:30:54 +08:00
|
|
|
}
|
|
|
|
traverse(node, nv);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool _enabled;
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Compose a scenegraph with examples of GL2 shaders
|
|
|
|
|
2004-09-26 18:27:25 +08:00
|
|
|
#define TEXUNIT_SINE 1
|
|
|
|
#define TEXUNIT_NOISE 2
|
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
osg::ref_ptr<osg::Group>
|
|
|
|
GL2Scene::buildScene()
|
|
|
|
{
|
|
|
|
osg::Texture3D* noiseTexture = make3DNoiseTexture( 32 /*128*/ );
|
|
|
|
osg::Texture1D* sineTexture = make1DSineTexture( 32 /*1024*/ );
|
|
|
|
|
|
|
|
// the root of our scenegraph.
|
|
|
|
rootNode = new osg::Group;
|
2004-11-10 17:56:03 +08:00
|
|
|
rootNode->setUpdateCallback( new AnimateCallback );
|
2003-10-05 19:30:54 +08:00
|
|
|
|
2005-04-08 04:20:09 +08:00
|
|
|
// attach some Uniforms to the root, to be inherited by Programs.
|
|
|
|
{
|
|
|
|
OffsetUniform = new osg::Uniform( "Offset", osg::Vec3(0.0f, 0.0f, 0.0f) );
|
|
|
|
SineUniform = new osg::Uniform( "Sine", 0.0f );
|
|
|
|
Color1Uniform = new osg::Uniform( "Color1", osg::Vec3(0.0f, 0.0f, 0.0f) );
|
|
|
|
Color2Uniform = new osg::Uniform( "Color2", osg::Vec3(0.0f, 0.0f, 0.0f) );
|
|
|
|
|
|
|
|
osg::StateSet* ss = rootNode->getOrCreateStateSet();
|
|
|
|
ss->addUniform( OffsetUniform );
|
|
|
|
ss->addUniform( SineUniform );
|
|
|
|
ss->addUniform( Color1Uniform );
|
|
|
|
ss->addUniform( Color2Uniform );
|
|
|
|
}
|
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
// the simple Microshader (its source appears earlier in this file)
|
2003-07-15 18:45:46 +08:00
|
|
|
{
|
2003-10-05 19:30:54 +08:00
|
|
|
osg::StateSet* ss = ModelInstance();
|
2005-04-08 04:20:09 +08:00
|
|
|
osg::Program* program = new osg::Program;
|
|
|
|
_programList.push_back( program );
|
|
|
|
program->addShader( new osg::Shader( osg::Shader::VERTEX, microshaderVertSource ) );
|
|
|
|
program->addShader( new osg::Shader( osg::Shader::FRAGMENT, microshaderFragSource ) );
|
|
|
|
ss->setAttributeAndModes( program, osg::StateAttribute::ON );
|
2003-07-15 18:45:46 +08:00
|
|
|
}
|
2003-10-05 19:30:54 +08:00
|
|
|
|
|
|
|
// the "blocky" shader, a simple animation test
|
|
|
|
{
|
|
|
|
osg::StateSet* ss = ModelInstance();
|
2005-04-08 04:20:09 +08:00
|
|
|
BlockyProgram = new osg::Program;
|
|
|
|
_programList.push_back( BlockyProgram );
|
|
|
|
BlockyVertObj = new osg::Shader( osg::Shader::VERTEX );
|
|
|
|
BlockyFragObj = new osg::Shader( osg::Shader::FRAGMENT );
|
|
|
|
BlockyProgram->addShader( BlockyFragObj );
|
|
|
|
BlockyProgram->addShader( BlockyVertObj );
|
|
|
|
ss->setAttributeAndModes(BlockyProgram, osg::StateAttribute::ON);
|
2003-10-05 19:30:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// the "eroded" shader, uses a noise texture to discard fragments
|
|
|
|
{
|
|
|
|
osg::StateSet* ss = ModelInstance();
|
2004-09-26 18:27:25 +08:00
|
|
|
ss->setTextureAttribute(TEXUNIT_NOISE, noiseTexture);
|
2005-04-08 04:20:09 +08:00
|
|
|
ErodedProgram = new osg::Program;
|
|
|
|
_programList.push_back( ErodedProgram );
|
|
|
|
ErodedVertObj = new osg::Shader( osg::Shader::VERTEX );
|
|
|
|
ErodedFragObj = new osg::Shader( osg::Shader::FRAGMENT );
|
|
|
|
ErodedProgram->addShader( ErodedFragObj );
|
|
|
|
ErodedProgram->addShader( ErodedVertObj );
|
|
|
|
ss->setAttributeAndModes(ErodedProgram, osg::StateAttribute::ON);
|
|
|
|
|
|
|
|
ss->addUniform( new osg::Uniform("LightPosition", osg::Vec3(0.0f, 0.0f, 4.0f)) );
|
|
|
|
ss->addUniform( new osg::Uniform("Scale", 1.0f) );
|
|
|
|
ss->addUniform( new osg::Uniform("sampler3d", TEXUNIT_NOISE) );
|
2003-10-05 19:30:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// the "marble" shader, uses two textures
|
|
|
|
{
|
|
|
|
osg::StateSet* ss = ModelInstance();
|
2004-09-26 18:27:25 +08:00
|
|
|
ss->setTextureAttribute(TEXUNIT_NOISE, noiseTexture);
|
|
|
|
ss->setTextureAttribute(TEXUNIT_SINE, sineTexture);
|
2005-04-08 04:20:09 +08:00
|
|
|
MarbleProgram = new osg::Program;
|
|
|
|
_programList.push_back( MarbleProgram );
|
|
|
|
MarbleVertObj = new osg::Shader( osg::Shader::VERTEX );
|
|
|
|
MarbleFragObj = new osg::Shader( osg::Shader::FRAGMENT );
|
|
|
|
MarbleProgram->addShader( MarbleFragObj );
|
|
|
|
MarbleProgram->addShader( MarbleVertObj );
|
|
|
|
ss->setAttributeAndModes(MarbleProgram, osg::StateAttribute::ON);
|
|
|
|
|
|
|
|
ss->addUniform( new osg::Uniform("Noise", TEXUNIT_NOISE) );
|
|
|
|
ss->addUniform( new osg::Uniform("Sine", TEXUNIT_SINE) );
|
2003-10-05 19:30:54 +08:00
|
|
|
}
|
|
|
|
|
2004-01-03 17:06:52 +08:00
|
|
|
#ifdef INTERNAL_3DLABS //[
|
2003-10-05 19:30:54 +08:00
|
|
|
// regular GL 1.x texturing for comparison.
|
2004-01-03 17:06:52 +08:00
|
|
|
osg::StateSet* ss = ModelInstance();
|
|
|
|
osg::Texture2D* tex0 = new osg::Texture2D;
|
|
|
|
tex0->setImage( osgDB::readImageFile( "images/3dl-ge100.png" ) );
|
|
|
|
ss->setTextureAttributeAndModes(0, tex0, osg::StateAttribute::ON);
|
|
|
|
#endif //]
|
2003-10-05 19:30:54 +08:00
|
|
|
|
|
|
|
reloadShaderSource();
|
|
|
|
|
2004-01-03 17:06:52 +08:00
|
|
|
#ifdef INTERNAL_3DLABS //[
|
2003-10-05 19:30:54 +08:00
|
|
|
// add logo overlays
|
2004-01-03 17:06:52 +08:00
|
|
|
rootNode->addChild( osgDB::readNodeFile( "3dl_ogl.logo" ) );
|
|
|
|
#endif //]
|
2003-10-05 19:30:54 +08:00
|
|
|
|
|
|
|
return rootNode;
|
2003-07-15 18:45:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2003-10-05 19:30:54 +08:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
GL2Scene::GL2Scene()
|
2003-07-15 18:45:46 +08:00
|
|
|
{
|
2003-10-05 19:30:54 +08:00
|
|
|
_rootNode = buildScene();
|
|
|
|
_shadersEnabled = true;
|
|
|
|
}
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
GL2Scene::~GL2Scene()
|
|
|
|
{
|
|
|
|
}
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
void
|
|
|
|
GL2Scene::reloadShaderSource()
|
|
|
|
{
|
2005-04-13 22:12:06 +08:00
|
|
|
osg::notify(osg::INFO) << "reloadShaderSource()" << std::endl;
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
LoadShaderSource( BlockyVertObj, "shaders/blocky.vert" );
|
|
|
|
LoadShaderSource( BlockyFragObj, "shaders/blocky.frag" );
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
LoadShaderSource( ErodedVertObj, "shaders/eroded.vert" );
|
|
|
|
LoadShaderSource( ErodedFragObj, "shaders/eroded.frag" );
|
2003-07-15 18:45:46 +08:00
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
LoadShaderSource( MarbleVertObj, "shaders/marble.vert" );
|
|
|
|
LoadShaderSource( MarbleFragObj, "shaders/marble.frag" );
|
2003-07-15 18:45:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-05 19:30:54 +08:00
|
|
|
// mew 2003-09-19 : TODO Need to revisit how to better control
|
2005-04-08 04:20:09 +08:00
|
|
|
// osg::Program enable state in OSG core. glProgram are
|
2003-10-05 19:30:54 +08:00
|
|
|
// different enough from other GL state that StateSet::setAttributeAndModes()
|
|
|
|
// doesn't fit well, so came up with a local implementation.
|
2003-07-15 18:45:46 +08:00
|
|
|
void
|
2003-10-05 19:30:54 +08:00
|
|
|
GL2Scene::toggleShaderEnable()
|
2003-07-15 18:45:46 +08:00
|
|
|
{
|
2003-10-05 19:30:54 +08:00
|
|
|
_shadersEnabled = ! _shadersEnabled;
|
|
|
|
osg::notify(osg::WARN) << "shader enable = " <<
|
|
|
|
((_shadersEnabled) ? "ON" : "OFF") << std::endl;
|
2005-04-08 04:20:09 +08:00
|
|
|
for( unsigned int i = 0; i < _programList.size(); i++ )
|
2003-10-05 19:30:54 +08:00
|
|
|
{
|
2005-04-08 04:20:09 +08:00
|
|
|
//_programList[i]->enable( _shadersEnabled );
|
2003-10-05 19:30:54 +08:00
|
|
|
}
|
2003-07-15 18:45:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*EOF*/
|