Import Geant4 11.0.0.beta source tree
This commit is contained in:
@@ -26,20 +26,15 @@
|
||||
//
|
||||
//
|
||||
//
|
||||
// G4OpenGLWtViewer : Class to provide Vertex Buffer Object (VBO) specific
|
||||
// functionality for OpenGL > 2.0 in GEANT4
|
||||
//
|
||||
// Class to provide Vertex Buffer Object (VBO) specific
|
||||
// functionality for OpenGL > 2.0 in GEANT4
|
||||
|
||||
#include "G4OpenGLViewer.hh"
|
||||
#ifdef G4OPENGL_VERSION_2
|
||||
|
||||
#include "G4OpenGLVboDrawer.hh"
|
||||
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
#include "G4OpenGLImmediateWtViewer.hh"
|
||||
#else
|
||||
#include "G4OpenGLImmediateQtViewer.hh"
|
||||
#endif
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
@@ -51,11 +46,7 @@ fOGLType(type)
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!//
|
||||
{
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
G4OpenGLImmediateWtViewer* v = dynamic_cast<G4OpenGLImmediateWtViewer*>(viewer);
|
||||
#else
|
||||
G4OpenGLImmediateQtViewer* v = dynamic_cast<G4OpenGLImmediateQtViewer*>(viewer);
|
||||
#endif
|
||||
if (v) {
|
||||
fVboViewer = v;
|
||||
}
|
||||
@@ -74,38 +65,6 @@ fOGLType(type)
|
||||
"}\n";
|
||||
|
||||
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVertexShaderSrc =
|
||||
"attribute vec3 aVertexPosition;\n"
|
||||
"attribute vec3 aVertexNormal;\n"
|
||||
"\n"
|
||||
"uniform mat4 uMVMatrix; // [M]odel[V]iew matrix\n"
|
||||
"uniform mat4 uCMatrix; // Client-side manipulated [C]amera matrix\n"
|
||||
"uniform mat4 uPMatrix; // Perspective [P]rojection matrix\n"
|
||||
"uniform mat4 uNMatrix; // [N]ormal transformation\n"
|
||||
"// uNMatrix is the transpose of the inverse of uCMatrix * uMVMatrix\n"
|
||||
"uniform mat4 uTMatrix; // [T]ransformation matrix\n"
|
||||
"uniform float uPointSize; // Point size\n"
|
||||
"\n"
|
||||
"varying vec3 vLightWeighting;\n"
|
||||
"\n"
|
||||
"void main(void) {\n"
|
||||
" // Calculate the position of this vertex\n"
|
||||
" gl_Position = uPMatrix * uCMatrix * uMVMatrix * uTMatrix * vec4(aVertexPosition, 1.0);\n"
|
||||
"\n"
|
||||
" // Phong shading\n"
|
||||
" vec3 transformedNormal = normalize((uNMatrix * vec4(normalize(aVertexNormal), 0)).xyz);\n"
|
||||
" vec3 lightingDirection = normalize(vec3(1, 1, 1));\n"
|
||||
" float directionalLightWeighting = max(dot(transformedNormal, lightingDirection), 0.0);\n"
|
||||
" vec3 uAmbientLightColor = vec3(0.2, 0.2, 0.2);\n"
|
||||
" vec3 uDirectionalColor = vec3(0.8, 0.8, 0.8);\n"
|
||||
" gl_PointSize = uPointSize;\n"
|
||||
" vLightWeighting = uAmbientLightColor + uDirectionalColor * directionalLightWeighting;\n"
|
||||
"}\n";
|
||||
|
||||
#else
|
||||
|
||||
|
||||
fVertexShaderSrc =
|
||||
"attribute highp vec4 aVertexPosition;\n"
|
||||
"attribute vec3 aVertexNormal;\n"
|
||||
@@ -126,9 +85,6 @@ fOGLType(type)
|
||||
" gl_PointSize = uPointSize;\n"
|
||||
// " vLightWeighting = uAmbientLightColor + uDirectionalColor * directionalLightWeighting;\n"
|
||||
"}";
|
||||
#endif
|
||||
|
||||
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
@@ -138,338 +94,6 @@ G4OpenGLVboDrawer::~G4OpenGLVboDrawer (
|
||||
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!//
|
||||
{
|
||||
}
|
||||
// +--------------------------------+
|
||||
// + WT (OpenGL ES) case +
|
||||
// +--------------------------------+
|
||||
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlClear(Wt::WFlags< GLenum > mask) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
fVboViewer->clear(mask);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlUniformMatrix4(const Wt::WGLWidget::UniformLocation &location, const Wt::WMatrix4x4 &m) {
|
||||
if (fVboViewer) {
|
||||
vboGlUseProgram(fVboViewer->getShaderProgram());
|
||||
fVboViewer->uniformMatrix4(location, m);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlUniformMatrix4(const Wt::WGLWidget::UniformLocation &location, const double* matrix) {
|
||||
if (fVboViewer) {
|
||||
Wt::WMatrix4x4 mat(
|
||||
(double) matrix[0], (double) matrix[4], (double) matrix[8], (double) matrix[12],
|
||||
(double) matrix[1], (double) matrix[5], (double) matrix[9], (double) matrix[13],
|
||||
(double) matrix[2], (double) matrix[6], (double) matrix[10],(double) matrix[14],
|
||||
(double) matrix[3],(double) matrix[7],(double) matrix[11],(double) matrix[15]);
|
||||
|
||||
fVboViewer->uniformMatrix4(location, mat);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlUniformMatrix4fv(const Wt::WGLWidget::UniformLocation &location, const float* matrix) {
|
||||
if (fVboViewer) {
|
||||
Wt::WMatrix4x4 mat(
|
||||
(double) matrix[0], (double) matrix[4], (double) matrix[8], (double) matrix[12],
|
||||
(double) matrix[1], (double) matrix[5], (double) matrix[9], (double) matrix[13],
|
||||
(double) matrix[2], (double) matrix[6], (double) matrix[10],(double) matrix[14],
|
||||
(double) matrix[3],(double) matrix[7],(double) matrix[11],(double) matrix[15]);
|
||||
|
||||
fVboViewer->uniformMatrix4(location, mat);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlUniformMatrix4(const Wt::WGLWidget::UniformLocation &location, const Wt::WGLWidget::JavaScriptMatrix4x4 &m) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
fVboViewer->uniformMatrix4(location, m);
|
||||
}
|
||||
}
|
||||
|
||||
Wt::WGLWidget::Buffer G4OpenGLVboDrawer:: vboGlCreateBuffer(){
|
||||
if (fVboViewer) {
|
||||
return fVboViewer->createBuffer();
|
||||
}
|
||||
return Wt::WGLWidget::Buffer();
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlBindBuffer(GLenum target, Wt::WGLWidget::Buffer buffer){
|
||||
if (fVboViewer) {
|
||||
fVboViewer->bindBuffer(target,buffer);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlDeleteBuffer(Wt::WGLWidget::Buffer buffer){
|
||||
if (fVboViewer == NULL) return;
|
||||
fVboViewer->deleteBuffer(buffer);
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlVertexAttribPointer(Wt::WGLWidget::AttribLocation location, int size, GLenum type, bool normalized, unsigned stride, unsigned offset){
|
||||
if (fVboViewer->isInitialized()) {
|
||||
fVboViewer->vertexAttribPointer(location, size,type, normalized, stride, offset);
|
||||
}
|
||||
}
|
||||
|
||||
Wt::WGLWidget::Program G4OpenGLVboDrawer:: vboGlCreateProgram(){
|
||||
if (fVboViewer) {
|
||||
return fVboViewer->createProgram();
|
||||
}
|
||||
return Wt::WGLWidget::Program();
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlAttachShader(Wt::WGLWidget::Program program, Shader shader){
|
||||
if (fVboViewer) {
|
||||
fVboViewer->attachShader(program,shader);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlLinkProgram(Wt::WGLWidget::Program program){
|
||||
if (fVboViewer) {
|
||||
fVboViewer->linkProgram(program);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlUseProgram(Wt::WGLWidget::Program program){
|
||||
if (fVboViewer) {
|
||||
fVboViewer->useProgram(program);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlEnableVertexAttribArray(Wt::WGLWidget::AttribLocation pointer){
|
||||
if (fVboViewer) {
|
||||
fVboViewer->enableVertexAttribArray(pointer);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlDisableVertexAttribArray(Wt::WGLWidget::AttribLocation pointer){
|
||||
if (fVboViewer) {
|
||||
fVboViewer->disableVertexAttribArray(pointer);
|
||||
}
|
||||
}
|
||||
|
||||
Wt::WGLWidget::UniformLocation G4OpenGLVboDrawer:: vboGlGetUniformLocation(Wt::WGLWidget::Program programm,const std::string &src){
|
||||
if (fVboViewer) {
|
||||
return fVboViewer->getUniformLocation(programm, src);
|
||||
}
|
||||
return Wt::WGLWidget::UniformLocation();
|
||||
}
|
||||
|
||||
Wt::WGLWidget::AttribLocation G4OpenGLVboDrawer:: vboGlGetAttribLocation(Wt::WGLWidget::Program shader,const std::string &src){
|
||||
if (fVboViewer) {
|
||||
return fVboViewer->getAttribLocation(shader, src);
|
||||
}
|
||||
return Wt::WGLWidget::AttribLocation();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void G4OpenGLVboDrawer::vboGlClearColor (double r, double g, double b, double a) {
|
||||
|
||||
if (fVboViewer->isInitialized() ) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->clearColor(r,g,b,a);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer::vboGlClearDepth(double depth) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->clearDepth(depth);
|
||||
#else
|
||||
glClearDepth(depth);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void G4OpenGLVboDrawer::vboGlFlush() {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->flush();
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlViewport(int x, int y, unsigned width, unsigned height) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->viewport(x,y,width,height);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlEnable(GLenum cap) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
if (cap != Wt::WGLWidget::NONE) {
|
||||
fVboViewer->enable(cap);
|
||||
}
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlDisable(GLenum cap) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
if (cap != Wt::WGLWidget::NONE) {
|
||||
fVboViewer->disable(cap);
|
||||
}
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlBlendFunc (GLenum sfactor, GLenum dfactor) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->blendFunc(sfactor, dfactor);
|
||||
#else
|
||||
#endif
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlDepthFunc (GLenum func) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->depthFunc(func);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlDepthMask(bool flag) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->depthMask(flag);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlColorMask (bool red, bool green, bool blue, bool alpha) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->colorMask(red,green,blue,alpha);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlLineWidth(double width) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->lineWidth(width);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlDrawArrays(GLenum mode, int first, unsigned count){
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->drawArrays(mode,first, count);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlDrawElements(GLenum mode, unsigned count, GLenum type, unsigned offset){
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
fVboViewer->drawElements(mode,count,type,offset);
|
||||
#else
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlBufferDatafv(GLenum target, const std::vector<double>::iterator begin, const std::vector<double>::iterator end, GLenum usage){
|
||||
if (fVboViewer) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
fVboViewer->bufferDatafv(target,begin,end,usage);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlBufferDataiv(GLenum target, const std::vector<unsigned short>::iterator begin, const std::vector<unsigned short>::iterator end, GLenum usage, GLenum type){
|
||||
if (fVboViewer) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
fVboViewer->bufferDataiv(target,begin,end,usage,type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlMultMatrixd(const GLdouble *matrix){
|
||||
if (fVboViewer) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
Wt::WMatrix4x4 mat(
|
||||
(double) matrix[0], (double) matrix[4], (double) matrix[8], (double) matrix[12],
|
||||
(double) matrix[1], (double) matrix[5], (double) matrix[9], (double) matrix[13],
|
||||
(double) matrix[2], (double) matrix[6], (double) matrix[10],(double) matrix[14],
|
||||
(double) matrix[3],(double) matrix[7],(double) matrix[11],(double) matrix[15]);
|
||||
|
||||
// FIXME !
|
||||
fVboViewer->uniformMatrix4(fVboViewer->getShaderTransformMatrix(),mat);
|
||||
if (fMatrixMode == GL_MODELVIEW) {
|
||||
// fVboViewer->uniformMatrix4(fVboViewer->getShaderTransformMatrix(),mat);
|
||||
} else {
|
||||
G4cerr << "glMultMatrixd could only be used in GL_MODELVIEW mode" << G4endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlMultMatrixf(const GLfloat *matrix){
|
||||
if (fVboViewer) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
Wt::WMatrix4x4 mat(
|
||||
matrix[0], matrix[4], matrix[8], matrix[12],
|
||||
matrix[1], matrix[5], matrix[9], matrix[13],
|
||||
matrix[2], matrix[6], matrix[10], matrix[14],
|
||||
matrix[3], matrix[7], matrix[11], matrix[15]);
|
||||
|
||||
if (fMatrixMode == GL_MODELVIEW) {
|
||||
fVboViewer->uniformMatrix4(fVboViewer->getShaderTransformMatrix(),mat);
|
||||
} else {
|
||||
G4cerr << "glMultMatrixf could only be used in GL_MODELVIEW mode" << G4endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlShaderSource(Shader shader, GLsizei , const GLchar **src, const GLint *){
|
||||
if (fVboViewer) {
|
||||
std::string s = *src;
|
||||
fVboViewer->shaderSource(shader, s);
|
||||
}
|
||||
}
|
||||
|
||||
void G4OpenGLVboDrawer:: vboGlCompileShader(Shader shader){
|
||||
if (fVboViewer) {
|
||||
fVboViewer->compileShader(shader);
|
||||
}
|
||||
}
|
||||
|
||||
Shader G4OpenGLVboDrawer:: vboGlCreateShader(GLenum shader){
|
||||
if (fVboViewer) {
|
||||
return fVboViewer->createShader(shader);
|
||||
}
|
||||
return Shader();
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
// +--------------------------------+
|
||||
// + QT (OpenGL ES) case +
|
||||
@@ -518,7 +142,6 @@ void G4OpenGLVboDrawer:: vboGlMultMatrixd(const GLdouble *matrix){
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
// +--------------------------------+
|
||||
// + All case +
|
||||
// +--------------------------------+
|
||||
@@ -548,11 +171,7 @@ void G4OpenGLVboDrawer::vboGlOrtho(GLdouble left, GLdouble right, GLdouble botto
|
||||
// Error: GL_INVALID_OPERATION
|
||||
|
||||
if (fMatrixMode == GL_PROJECTION) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
vboGlUniformMatrix4fv(fVboViewer->getShaderProjectionMatrix(), ortho);
|
||||
#else
|
||||
glUniformMatrix4fv(fVboViewer->getShaderProjectionMatrix(), 1, 0, ortho);
|
||||
#endif
|
||||
} else {
|
||||
G4cerr << "glFrustum could only be used in GL_PROJECTION mode" << G4endl;
|
||||
}
|
||||
@@ -583,11 +202,7 @@ void G4OpenGLVboDrawer::vboGlFrustum(GLdouble left, GLdouble right, GLdouble bot
|
||||
};
|
||||
|
||||
if (fMatrixMode == GL_PROJECTION) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
vboGlUniformMatrix4fv(fVboViewer->getShaderProjectionMatrix(), proj);
|
||||
#else
|
||||
glUniformMatrix4fv(fVboViewer->getShaderProjectionMatrix(), 1, 0, proj);
|
||||
#endif
|
||||
} else {
|
||||
G4cerr << "glFrustrum could only be used in GL_PROJECTION mode" << G4endl;
|
||||
}
|
||||
@@ -611,13 +226,8 @@ void G4OpenGLVboDrawer::vboGlColor4d(int red,int green,int blue,int alpha) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
// double color [] = { red, green, blue, alpha };
|
||||
// FIXME : REMOVE /2 , used to render transparents for testing purpose
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
double color [] = { red, green, blue, 0.7 };
|
||||
glUniform4fv (fVboViewer->getUniformLocation(fVboViewer->getShaderProgram(), "uPointColor"),color);
|
||||
#else
|
||||
alpha = 0.7;
|
||||
glUniform4f (glGetUniformLocation(fVboViewer->getShaderProgram(), "uPointColor"),red, green, blue, alpha);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -627,11 +237,7 @@ void G4OpenGLVboDrawer:: vboGlColor4fv(const GLfloat* data) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
double color [] = { (data[0]), (data[1]), (data[2]), 0.7};
|
||||
// FIXME : REMOVE /2 , used to render transparents for testing purpose
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
glUniform4fv (fVboViewer->getUniformLocation(fVboViewer->getShaderProgram(), "uPointColor"),color);
|
||||
#else
|
||||
glUniform4f (glGetUniformLocation(fVboViewer->getShaderProgram(), "uPointColor"),color[0],color[1],color[2], color[3]);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -639,11 +245,7 @@ void G4OpenGLVboDrawer:: vboGlColor4fv(const GLfloat* data) {
|
||||
void G4OpenGLVboDrawer:: vboGlPointSize(float size) {
|
||||
if (fVboViewer) {
|
||||
if (fVboViewer->isInitialized()) {
|
||||
#ifdef G4VIS_BUILD_OPENGLWT_DRIVER
|
||||
glUniform1f(fVboViewer->getUniformLocation(fVboViewer->getShaderProgram(), "uPointSize"),size);
|
||||
#else
|
||||
glUniform1f (glGetUniformLocation(fVboViewer->getShaderProgram(), "uPointSize"),size);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user