OpenGL is a graphics standard and API which is platform independent and available for desktop, workstation and mobile devices. It is designed to be easy to accelerate with dedicated computer hardware, and hence most implementations give greatly improved performance over traditional software ...
0
votes
0answers
7 views
how to do customized stencil test in fragment shader
In my project, I used 'discard' call to perform customized stencil test, which tries to draw things only on a specified area defined by a stencil texture. Here is the code from fragment shader:
...
1
vote
0answers
21 views
Drawing inside the clipping coordinates
I defined a clipping volume for some drawing that I have to do and tried drawing a rectangle for which I am getting the input coordinates from an external source. For e.g.: The external sources gives ...
1
vote
2answers
27 views
GLSL, combining 2D and 3D textures
I have been trying for a couple of hours now to find some info on similar issues, but I cant find much. I am trying to blend a 3D texture with a 2D one to make a terrain. The 3D texture has moss, ...
1
vote
1answer
20 views
Why is my VBO updated on 2nd click?
I have this method (InvertPolygonMesh) which basically takes an array (my VBO) and inverts all vertices along the Z axis. This method is directly invoked by the click of a button (IBAction). Now for ...
0
votes
2answers
26 views
OpenGL & GLSL exe not running in windows 7 [closed]
I have developed one GLSL application with OpenGL. It is perfectly running on my windows XP. But when we are trying to execute only the executable file on windows 7 which does have any visual studio, ...
1
vote
0answers
24 views
OpenGL 3D Picking
I read many sample code about opengl picking. Nearly all of them use gluPerspective funcion for projection.I'm using glOrtho instead of gluPerspective function.
And my Selection function is as ...
0
votes
0answers
15 views
how to solve “Undefined symbols for architecture armv7” when I add OpenCV in ARDrone ios?
When I add OpenCV to the project, it happens "Undefined symbols for architecture armv7".
It won't compile even when I remove all the OpenCV Code.
OpenGL can work well before adding Opencv.
I have ...
1
vote
1answer
25 views
How to set the camera within a cube?
I have cube which has different color to each side-lock -
public void display(GLAutoDrawable drawable) {
final GL gl = drawable.getGL();
gl.glClear(GL.GL_COLOR_BUFFER_BIT | ...
2
votes
0answers
17 views
Strange MinGW behaviour with OpenGL after VS2012 update
For some reason, which has only appeared today after installing the VS2012 update 2, running programs using OpenGL from the MinGW terminal results in strange rendering behaviour.
If I run an ...
-1
votes
0answers
14 views
OpenGL Libs in Mono (C++) [closed]
How could I add the OpenGL libraries to my Mono C++ project? I have absolutely no idea where to start and I am not that experienced with Mono. I found that there is a Path section in Build->Code ...
-6
votes
0answers
49 views
Third person Camera OpenGL
I want to implement a third person camera, I have the coordinates of the camera let's say x,y,z and the pitch angle with which the camera is rotated and I have a character in front of me which I want ...
0
votes
1answer
41 views
Sphere texture mapping (opengl and c++)
I am trying to add a texture to a sphere, it works, but I keep getting an error. Below is a picture of what I get,
I don't know what this GL error: Invalid operation error is referring to. I think ...
-2
votes
1answer
22 views
How to load a texture with GL Image?
I know how to load the texture
std::unique_ptr<glimg::ImageSet> pImgSet(glimg::loaders::dds::LoadFromFile("test.dds"));
GLuint tex = glimg::CreateTexture(pImgSet.get(), 0);
But how do I get ...
0
votes
2answers
35 views
How exactly does deferred shading work in LWJGL?
I want to start a deferred shading project with GLSL , Java & openGl
1. How does a deferred rendering pipeline works, does it render the scene for each image?
For example when I want to create a ...
-1
votes
0answers
22 views
Glut subwindow toggle
I have a program and i have created a subwindow from my main window. The problem is that its always there, my goal is to press a key and then get that subwindow "on" and when i press it again , to ...
0
votes
1answer
31 views
OpenGL mesh textures are flipped horizontally
I am working on a 3D renderer, and as I was loading various test models, I noticed that everything looked OK, except for the fact the the textures were all flipped on the x-axis.
This is actually ...
3
votes
0answers
40 views
Rendering Large Rectangular Tiled Images with an OpenGL QuadTree
I am currently designing and developing a bespoke imagery viewer for exceptionally large image files (sometimes in the gigapixels). Fortunately these are provided as 256x256 tiles in staged resolution ...
0
votes
1answer
41 views
Can't read DDS image header on Linux
I use Nvidia nv_dds utility to load DDS image files to use in OpenGL program. It works on Windows but fails on Linux (Ubuntu 12.10).Initially I thought the problem with nv_dds but then found that ...
-2
votes
1answer
56 views
OpenGL: how to render objects in a loop? [closed]
I have a specific requirement where I need to render objects based on user-input. Basically I want to write a code which waits for user input, displays something on the window and again waits for the ...
0
votes
1answer
42 views
GLFW non-responsive fullscreen window
I am having some issues with GLFW's window creation. I am wanting to have a program capable of toggling between windowed and fullscreen mode. To do this in GLFW 2.7.8 one must first destroy the active ...
0
votes
3answers
28 views
translate rotate and scale object after drawing in opengl?
I am writing a drawing program that it is simple paint.
I want to translate or rotate or scale last object in the scene similar ms paint.
For this what i can do?
6
votes
2answers
96 views
GLSL, interface block
The Problem:
I'm learning OpenGL from http://www.arcsynthesis.org/gltut/index.html tutorial, and I had really hard time getting Tutorial 13: Geometry Impostors working (6+ hours), and it is now ...
0
votes
1answer
58 views
OpenGL Texture loading, but not applied (?)
I've got a little problem with texturing.
I load the mesh via assimp, which works perfectly fine, the model looks the way it should.. but it's black..
So, at first I load the shader and then start ...
-4
votes
1answer
40 views
OpenGL Glut with C++ Class [closed]
I and my friend are doing a game with GLUT library with c++.
We splitted the problems; I am dealing about the game and my friend about the menu. Both we wrote in a cpp file with display, keyboard and ...
-3
votes
0answers
50 views
Starting OpenGL [closed]
I have started programming in c++ nearly 6 months ago . I already know basic syntax , and principles . I would like to know if I will be able to start learning OpenGL now. If yes then where to start ...
-1
votes
0answers
26 views
LWJGL - not all display lists rendering
I'm working on a Minecraft like game. I create display list for each 16x16x16 chunk. It works fine. But when I'm trying to add block selection it's invisible. It appears only when I'm at some random ...
-2
votes
1answer
46 views
Why does rendering to a FBO cause the texture to be darker?
Rendering to a FBO then to the screen buffer appears to make the texture darker.
As seen here -> http://imgur.com/QZNyY8U
RenderTarget target = new RenderTarget(Display.getWidth(), ...
-2
votes
0answers
35 views
implementation of an edge list opengl
Is this the right implementation of an edge list?
I´m not sure if this is right. Do i miss something?
I know that i have to use vertices, faces and normals like
V= (V1,V2,V3,V4,V5) for Points
and ...
-4
votes
0answers
32 views
obj. file doesn´t show the hole object
I have a problem with the object loader. It shows the object but only some triangles. It doesn´t fill the whole object. I tried with different .obj files and there is always something missing. So it ...
1
vote
1answer
63 views
What is the difference between opengl and GLSL?
I recently started programming with openGL. I've done code creating basic primitives and have used shaders in webGL. I've googled the subject extensively but it's still not that clear to me. ...
0
votes
0answers
22 views
OpenGL - Getting The Display Color Bits
I'm looking at the LWJGL wiki for taking a screenshot (found here) and I noticed the comment Assuming a 32-bit display with a byte each for red, green, blue, and alpha. in this code:
...
0
votes
1answer
14 views
OSX and OpenGL : ERROR: Internal error <FBConfig with necessary capabilities not found> in function fgOpenWindow
I have an OpenGL project I'm attempting to run in OSX 10.8, so far the project compiles correctly and when you attempt to start it, XQuartz will come up. However, before anything appears on the ...
0
votes
1answer
30 views
OSX : Symbols not found for architecture i386
I have the following makefile that uses C++ and OpenGL. It was compiling at all, so I added the -m32 line in order to attempt to get it to compile in x86_64. Now I'm getting the same error but it's ...
0
votes
0answers
28 views
Need help drawing OpenGL Triangle using mouseDown event in Cocoa
so this is the first time I've ever programmed in Xcode or Objective C (some prior experience in Java and Python) and for my final project in my senior high school computer science course, I wanted to ...
0
votes
1answer
49 views
having some issues when i am compiling my code [closed]
i really do not know why i am having these compiling issues here when i compiled this program yesterday it compiled nicely but today its not,the code shows how ro create shapes a ball and a cone and ...
1
vote
0answers
33 views
Triangulate a quad with a hole in it using tessellation
Is it possible to triangulate a quad with a hole in it using tesselation shader? For example,
Imagine I have a Quad.
Then I want to make a hole to the center of the quad.
There need to be a lot ...
1
vote
1answer
32 views
How to create a QGLWidget from a CGLContextObj?
I'm using Qt 4.8.4 on Mac OS 10.8.
I already have a CGLContextObj (created outside my control).
I would like to create a QGLWidget from (or at least shared with) my existing CGLContextObj — so I can ...
4
votes
2answers
54 views
How to Get Max Number of Multitextured Units
Lets say I have a function where I want the user to be able to select the appropriate texture in a type safe manner. So instead of using a GLenum of GL_TEXTUREX I define a method as follows.
void ...
1
vote
1answer
28 views
Misunderstood Compiler Error on glGenerateMipmap(GL_TEXTURE_2D);
error: there are no arguments to 'glGenerateMipmap' that depend on a template parameter, so a declaration of 'glGenerateMipmap' must be available [-fpermissive]
I have #include <GL/glext.h> ...
-1
votes
2answers
54 views
Few questions regarding OpenGL (culling and optimization) in a cube-based voxel engine
I'm using the LWJGL to create a Minecraft like voxel engine, but I'm running in to some difficulties with optimization. Now, obviously culling will probably have a great positive impact on ...
-1
votes
0answers
22 views
Y direction shearing matrix and its equivalence using rotation, scaling and transformation [duplicate]
1 0 0
shx 1 -shy.xref
0 0 1
Could someone please explain to me the steps for expressing the shear operation in terms of rotation, scaling and transformation?
1
vote
1answer
28 views
Crash when glDrawArray and glDrawElements in one programme
void init_cube(void){
makeCube(cbr_points,cbr_normals);
glGenVertexArrays(1,&VAID_cube);
glBindVertexArray(VAID_cube);
glGenBuffers(1,&VBID_cube);
...
-3
votes
0answers
17 views
How to use Tecture with Open Gl in c#
this error
I went to connect Toa with Project
to use Tecture
https://dl.dropboxusercontent.com/u/69438643/open.png
0
votes
1answer
22 views
How To: Convert from OpenGL to GLES
I have the following code...
void draw_polygon(struct vector2d* center, int num_points,
struct vector2d* points, int mode)
{
int i;
if(mode == GL_TRIANGLE_FAN)
...
1
vote
1answer
38 views
GLSL - Weird syntax error “<”
I'm trying to use a shader but it keeps telling me this error on both fragment and vertex shader:
error(#132) Syntax error: "<" parse error
vertex shader
varying vec4 diffuse;
varying vec4 ...
0
votes
2answers
40 views
opengl - Rotating around a sphere using vectors and NOT glulookat
I'm having an issue with drawing a model and rotating it using the mouse,
I'm pretty sure there's a problem with the mathematics but not sure .
The object just rotates in a weird way.
I want the ...
0
votes
1answer
21 views
How can I properly use bind() on a subImage?
I'm having a lot of trouble using the Slick2D bind() functionality and then trying to draw an image in OpenGL.
I'm using an Image I obtained from getSubImage. If I use the graphics.drawImage() method ...
2
votes
2answers
57 views
Is there a way to draw a cube on openGL without having to specify each individual coordinate?
When I'm working on 3D graphics projects I often stumble across the problem of having to draw a cube. Thing is, I thus far have not found a better method to draw one other than specifying EVERY ...
-1
votes
0answers
12 views
chai3d-the system cannot find the file specified in chai3d [closed]
i'm trying to run chai3d but everytime try to run it this error comes out: c:\Users\user\Contacts\Desktop\cha3d-2.0.0\examples\msvc9\01-devices\x64\Debug\01-devices.exe. The system cannot find the ...
0
votes
1answer
55 views
Skeletal animation using OpenGL [closed]
I want to do skeletal animation using OpenGL. I tried to search on net, but I couldn't find any proper tutorial or any book.
I saw few sites, but they are using some other software like COLLADA or ...






