Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
8k views

Using GLEW to use OpenGL extensions under Windows

I've been using OpenGL extensions on Windows the painful way. Is GLEW the easier way to go? How do I get started with it?
6
votes
4answers
4k views

Using OpenGL extensions On Windows

I want to use the functions exposed under the OpenGL extensions. I'm on Windows, how do I do this?
5
votes
1answer
265 views

GLEW and openGL deprecation

I am using openGL and glew to check the extensions. Say I wanted to check if I could use multitexture extension: GLEW_ARB_multitexture will return true if I can use it. BUT arb_multitexture was ...
4
votes
4answers
3k views

Compiling minimal GLEW application under Cygwin

Let's consider the following program and try to compile it under Cygwin: #include <GL/glut.h> int main(int argc, char** argv) { glutInit(&argc, argv); glLoadIdentity(); } It ...
3
votes
3answers
973 views

Building glew on with mingw

Can anyone give me the correct command to build glew on windows with mingw? I have tried: gcc -static glew.c glewinfo.c visualinfo.c -I/path/to/glew/include but I am getting thousands of linker ...
3
votes
2answers
322 views

Do I have to include the MIT License with commercial software if it uses an MIT Licensed static library?

It seems like a similar question has been asked many times here on stackoverflow, but the answer is still unclear in the context of my project. I am writing a 3D game engine that uses OpenGL and the ...
2
votes
2answers
68 views

How to use GLEW with MinGW

I was trying to use glew32.lib file to link in my project, than I compile Glew source by myself to get glew.a file. Now, I have these link errors in my project: g++ -o Chapter10(OpenCLTest).exe ...
2
votes
3answers
475 views

gl.h included before glew, but GLFW needs gl.h

I remember that the way you order your #include-s matter. Well, I'm in a bit on trouble. I have these two headers: #include <gl/glfw.h> #include <gl/glew.h> If I run that, I get an ...
2
votes
2answers
2k views

How to use GLEW with Qt?

I want to use GLEW with Qt under Windows (7 if that matters). What I did was go to the GLEW website, download the package for windows, then put the glew.dll in System32 folder. In my pro file, I ...
2
votes
2answers
1k views

How to porting opengl code with glew to openGL ES code for iPhone

I'm trying to port a ogre function written in opengl to opengl ES, but this function uses defines from glew.h, and I have no idea how to port this code. The problem si that GL_S (for example) is not ...
1
vote
2answers
36 views

Glew Linking Problems in Qt Creator?

I'm trying to link GLEW (with SDL and OpenGL - note, not SDL's implementation of OpenGL) in Qt Creator via a QMake file, though I'm not having much luck. No matter what I try, I seem to get the same ...
1
vote
3answers
94 views

OpenGL window isn't opening

I have code from the OpenGLBook (openglbook.com) which compiles, but does not load. I have absolutely no idea why it's not loading. The code is as follows: main.cpp #include "main.h" /// Methods ...
1
vote
2answers
1k views

Installation of all OpenGL libraries for development in Ubuntu 11.10

I've got a just installed ubuntu 11.10. I follow the first answer in this question. I installed: freeglut3 freeglut3-dev igor@ubuntu:~$ sudo apt-get install freeglut3 [sudo] password for igor: ...
1
vote
3answers
115 views

GL VBO issues: First and final strip of triangles not being displayed correctly

I'm not new to C++ nor OpenGL however I am new to using VBOs. Until now I've been lazy and just used display lists for mostly everything. My problem is most likely quite simple but it's annoying! It ...
1
vote
0answers
147 views

Problem with linking glew with CodeLite

I've been trying to link glew to my c++ CodeLite project on Windows with little success. First I used MinGW to compile the glew source into libglew32.a and glew32.dll. These are inside ...
1
vote
3answers
238 views

Having trouble getting GLEW to work

note: glGetString(GL_VERSION) returned: 2.1.0 - Build 8.15.10.2361 I have installed GLEW to System32, and VCDir/lib and VCDir/include directories. So the linker should not have any issues finding the ...
1
vote
2answers
467 views

cmake flags for opengl using glew and glfw

I have this simple code: #include <stdio.h> #include <stdlib.h> #include <GL/glew.h> #include <GL/glfw.h> int main(int argc, char const* argv[] ) { if( !glfwInit() ){ ...
1
vote
2answers
123 views

Primitive Restart Index error in C++ with OpenGL

I'm just learning OpenGl and trying to implement a simple test of how the Primitive Restart Index works. No matter what I try, g++ gives me the error "undefined reference to ...
1
vote
1answer
79 views

Calling a glut function exits the program

I'm attempting to use OpenGL with Qt (relatively new to both of them), but whenever the program encounters a glut function like gluSolidCube or similar, it simply exits. I'm sure I'm missing something ...
1
vote
1answer
409 views

GLEW Linker Error

I am following along with tutorials on the site, http://openglbook.com/, and I have run into a problem I cannot solve. In the second tutorial, they begin using shaders. After entering in their code, I ...
1
vote
2answers
156 views

including glew using only source files?

For reasons outside of my comprehension, glew will simply not work when statically linked. Is there a way to simply just include the glew.h, glxew.h, wglew.h and glew.c source files into my project ...
1
vote
2answers
300 views

Using Glew in multiple files

Somehow I can't get Glew in multiple header files. It is just complaining about Gl is already defined before GLEW. I have the following file structure in short: Program.h includes: ...
1
vote
1answer
237 views

What is missing in the CMakeLists.txt / my library installation?

I reduced my prog to the minimum just to show the pb: cmake does not complain, neither make (running Linux / libglew 1.5 / cmake 2.8.2). The program segfaults, and I have no clue why / which steps I ...
1
vote
3answers
2k views

OpenGL: How to compile glew32.dll from source file

I download the glew source file from http://glew.sourceforge.net/. In the readme file, it says I should use \build\vc6.0\glew.dsw to comple the DLL. But there are four projects after I open it in VS ...
1
vote
1answer
429 views

OpenGL VBO not displaying

I'm having trouble drawing with VBOs. Using immediate mode, I can easily draw a cubic grid of points, but its quite slow. I wanted to use a VBO to try and speed up the drawing. I'm using SDL/glew. ...
1
vote
1answer
423 views

glTexImage3D crashes in QT

Following is part of the code. There is no problem when compiling, but it crashes when executed. And it breaks in the line of glTexImage3D. Qt version 4.5.3, and class "opengl" is inherited from ...
1
vote
2answers
1k views

setting up GLEW widows?

I have visual studio 2010 and i want to set up glew.h on it. i do this step but still i have linker error: 1.download glew pack 2.copy .h files to C:\Program Files (x86)\Microsoft ...
1
vote
1answer
502 views

I'm having trouble linking the GLEW library to my Xcode Project

I'm currently trying to follow the OpenGL intro guide here. I've pulled the finished project straight from the git repo on the site into a new Xcode project, but upon trying to build and run I get a ...
0
votes
1answer
16 views

GLEW: Apple Mach-O Linker (Id) Error

I'm trying to use glew in my Xcode project, but I'm getting this: Apple Mach-O Linker (Id) Error... Undefined symbols for architecture x86_64 I'm using the current version of glew that I downloaded ...
0
votes
1answer
21 views

Cannot deploy GLFW 3.2

So this one is a doozie; I've got a pretty large OpenGL solution, written in version 3.2 core with GLSL 1.5 in Windows 7. I am using GLEW and GLM as helper libraries. When I create a window, I am ...
0
votes
1answer
42 views

SIGSEGV error while using c++ on linux with openGL and SDL

Myself and a few other guys are taking a crack at building a simple side scroller type game. However, I can not get a hold of them to help answer my question so I put it to you, the following code ...
0
votes
3answers
28 views

How to initialize glut with fake parameters?

I'm using opengl, using the GLUT and GLEW libraries to create a plugin for a certain application. This plugin doesn't start with a simple int main(argc, argv). So i can't pass these values to ...
0
votes
1answer
39 views

Monodevelop and GLUT issues

Im having an issue using GLUT with monodevelop. Im using the following code: #include <stdlib.h> #include <stdio.h> #include <string.h> #include <GL/glew.h> #include ...
0
votes
0answers
81 views

VS10 always links to SUBSYSTEM:WINDOWS; CMake+SDL+GLEW

I'm just trying to set up a simple project that shall be able to compile on every platform, that is supported by CMake. I started my project on a Win7-system and wrote a little main.cpp that includes ...
0
votes
2answers
91 views

cannot link glew under xcode4, macosx lion

Using glew, I'm trying to link the simple program #include </usr/include/GL/glew.h> int main (int argc, const char * argv[]) { glewInit(); return 0; } in XCode 4, under OSX Lion, ...
0
votes
1answer
100 views

OpenGL Memory Leaks while using glClearColor or glPushMatrix/glPopMatrix pair?

I started creating a small game engine for an independent project. When writing the graphics portion of the engine, I noticed there was a memory leak that dissapears when I stop using glClearColor ...
0
votes
1answer
191 views

GCC SDL + GLEW linking errors

I have a static library in which I'm calling OpenGL extension functions via GLEW. As the project is being built in GCC (NetBeans 7.0), and GLEW's binaries are only shipped in Visual-C flavor, I have ...
0
votes
1answer
168 views

Access violation using VBO with glew

I'm trying to use VBO in my OpenGL project. I'm using glew library for extensions and glfw for windows handling. When I try to create VBO application crashes and I get Unhandled exception at ...
0
votes
0answers
118 views

Segmentation fault when trying to use SDL + GLEW

I'm attempting to learn how to use SDL with OpenGL using GLEW for the extension methods. As far as I can tell from pages such as Using OpenGL with SDL from SDL corner the following code should work ...
0
votes
0answers
393 views

OpenGL + GLEW + MinGW application linking issue

I'm getting some undefined references when building my project. Here's the build log: **** Build of configuration Debug for project test **** **** Internal Builder is used for build ...
0
votes
1answer
81 views

Problems with glew and gltools, _glewInit already defined

I am trying to add shadders from opengl Superbible example to my program. The problem is, when I call any function from gltools i get glew32.lib(glew32.dll) : error LNK2005: _glewInit already ...
0
votes
1answer
79 views

OpenGL/GLEW: How to choose the correct/existing enum without provoking a compile time error

I am currently using glew to detect some GPU features of the bound openGL context. Imagine a texture class where I want to use the openGL 3.0 enums if available and fallback to extensions if opengl ...
0
votes
1answer
205 views

Building errors with visual studio

I have a solution for a previous c++ project provided to me. When I open the solution in visual studio and try to build, I get the error: 1>------ Build started: Project: Test Proj, Configuration: ...
0
votes
1answer
440 views

Problems linking GLEW into SFML project using CodeBlocks

So I'm trying to learn to write shaders and incorporate them into my OpenGL program (I use SFML 1.6 to create a valid OpenGL environment rather than mucking around with GLUT; my IDE is Codeblocks; my ...
0
votes
1answer
348 views

QT OpenGL ,Vertex Buffer Object and GLEW?

I am in the process of migrating my old openGL code (immediate mode) to Vertext-Buffer-Objects. I realized that I need to use OpenGL3 API calls (GL_ARB_vertex_buffer_object) for this. So I was going ...
0
votes
1answer
340 views

static build glew & glfw on linux

In my project directory, i have: ./external/glew, which has glew compiled from source (ran make) ./external/glfw, which has glfw also compiled from source (ran make x11) in my .c source code: ...
0
votes
1answer
307 views

Can't set up glew in VC++ 2010

I've tried following the instructions giving by: http://glew.sourceforge.net/install.html but nothing seems to work. First it says to install the files as follows: bin/glew32.dll to ...
0
votes
0answers
50 views

libCurl and glew won't work together

I have windows project which is trying to use libcurl. It crashes with a heap corruption after calling 'curl_easy_perform'. After an hour of investigating, i've pinpointed it to a different ...
0
votes
2answers
273 views

VBO won't display (sdl with glew)

I'm just starting out using VBOs (using SDL/glew). I'm trying to start out using the simple example of a cube - actually at the moment just the one face of a cube - but I can't get anything to display ...
0
votes
0answers
220 views

OpenGL Glew error concerning X11 header files

Okay so I'm kind of new with OpenGL, but I thought I should learn to use OpenGL as it's currently meant to be used from the word go. So I'm skipping all the fixed pipeline stuff using glew to access ...

1 2