Tagged Questions
The glfw tag has no wiki summary.
33
votes
2answers
3k views
Small Haskell program compiled with GHC into huge binary
My source code can be found here: https://github.com/tm1rbrt/S3DM
When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
7
votes
2answers
164 views
GLUT Alternatives for Haskell?
I don't want to use GLUT, because it does not have a Haskell-like feeling on it. It basically forces you to use IORef and such, because of the callbacks.
I've considered GLFW, which seems simple and ...
4
votes
1answer
85 views
Bug occurs only when compiling with -O3
While making an OpenGL toolkit using GLFW and Cython I stumbled upon a very, very weird issue. I created the following file pxd file (quite large, so I gisted it):
https://gist.github.com/1441970
...
3
votes
1answer
572 views
SDL versus GLFW?
What are the pros and cons to each? It seems they serve the same purpose. I have a few demos with each and they seem about the same. Performance or cross platform wise, is one better than the ...
2
votes
1answer
53 views
Transform existing C++ openGL project from glut/freeglut to glfw
I want to upgrade my scientific 3D application from Freeglut to Glfw, but I worried about hidden conflicts or loss of data, Actually my application works like a charm with freeglut and I don't have ...
2
votes
1answer
179 views
software rendering with opencl onto opengl 2d view
I want to build a little software rendering library, because I like the idea of voxels, and the possible other alternative methods of rendering. Call me naive.
Using vanilla c++, with codeblocks, on ...
2
votes
2answers
171 views
OpenGL depth problem
I'm having problem with rendering depth in OpenGL
Following code is a simple example of code in which problem occurs. It renders 2 trapezoids in same place, and one of them rotates. But the rotating ...
2
votes
3answers
474 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
1answer
268 views
C With OpenGL and GLFW questions (Mainly a C question)
I am trying to build an application to simulate some basic spheres moving around for this assignment I have got.
I am relatively new to C but I have been using .NET and java for some time.
The ...
2
votes
4answers
322 views
How to maintain a list of functions in C++/STL?
Before asking you my question directly, I'm going to describe the nature of my prolem.
I'm coding a 2D simulation using C++/OpenGL with the GLFW library. And I need to manage a lot of threads ...
1
vote
1answer
84 views
Removing the maximize button from a window created using glfw
How do you remove the maximize button from a window created usingg the glfwopenWindow functionn call ?
Currently, what I'm doing is:
windowHandle = GetForegroundWindow();
long Style = ...
1
vote
3answers
35 views
When I've specified a header file in my code why do I need to specify a library in my gcc compilation command?
I am using GLFW libraries in my *.c program.
#include <GL/glfw.h>
#include <stdlib.h>
int main(void)
{
int running = GL_TRUE;
int k=0;
.....
...
..
The ...
1
vote
1answer
133 views
flickering while rendering a 3D object (.obj file) using OpenGL
While attempting to render a 3D object using OpenGL (and the GLFW library), the model experiences lots of flickering. Im reading the .obj file using a library that I've written on my own.
Written ...
1
vote
1answer
127 views
Haskell OpenGL won't open in Ubuntu
This one is a bit weird, but I will start at the beginning:
As far as I gathered, there are 3 ways to open up an OpenGL window in Haskell: GLUT, GLFW and SDL. I don't want to use GLUT at all, because ...
1
vote
1answer
100 views
Using GLFW to render and WinAPI to handle messages
I want to use the OpenGL library, GLFW, to render a window but also want to use WinAPi to create controls and handle events. Is there any way to do this ?
I tried searching(googling) for "using glfw ...
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
1answer
86 views
Can't initiate GLFW with Code::Blocks on Windows 7
Believe me, I've searched for answers, but I just can't seem to solve this problem:
When I try to start a GLFW 2.7 project using CodeBlocks 10.05, I always get errors when pointing to the directory ...
1
vote
1answer
78 views
Cannot install GLFW-b-0.0.2.10 package
When I do
cabal install GLFW-b
I get an error:
Resolving dependencies...
<command line>: cannot satisfy -package Cabal-1.10.1.0:
Cabal-1.10.1.0-49678efb6bfc399545e2b61629b900e2 is ...
1
vote
6answers
586 views
Removing console window for Glut/FreeGlut/GLFW?
Under Visual C++, I have played around with Glut/FreeGlut/GLFW. It seems that everyone of these projects adds a CMD window by default. I tried removing it going under:
...
1
vote
1answer
241 views
OpenGL - Triangle with a shader isn't showing
This program builds with no problem, and the executable starts up, but no triangle shows up. I am following a GLSL tutorial where a Shader class is made to handle GLSL files.
Shader.h
#ifndef ...
1
vote
3answers
417 views
How does one react to mouse wheel events in an GLUT window in Haskell?
I'm using the OpenGL package, and was using the GLUT package as well. Although the GLUT package appears to have a mouse wheel callback, it doesn't appear to work (doc says freeglut only).
So... ...
1
vote
1answer
240 views
Hidding mouse cursor with glfw
I'm working with a game made with glfW and running in Ubuntu. My problem is that by hiding the mouse cursor with the line
glfwDisable(GLFW_MOUSE_CURSOR);
causes some machines to simply disregard ...
1
vote
2answers
102 views
c++ glfw macosx dim screen vs f1
I'm writing a GLFW app in C++ on MacOSX.
It runs in GLFW_FULLSCREEN mode
Now, when I press the "dim screen / f1" button, my Mac dims my screen.
I do not want that to happen. Instead, I want GLFW to ...
1
vote
2answers
57 views
How to make full-screened MacOSX bundle killable?
Exposition:
I am writing an GLFW app on MacOSX. The app is a Mac bundle.
I want my app to run in fullscreen mode (easy, use GLFW_FULLSCREEN). Problem is .. my code is still buggy, and I do not know ...
1
vote
3answers
291 views
How can a glfwSleep() cause a segfault?
in my multithraded application, I'm using a sleep() function (the one from the GLFW library):
glfwSleep(..);
and it apparently leads my application to segfaulting as my call stack shows:
#0 ...
1
vote
1answer
701 views
Xcode project setup for GLFW library reference problem
I'm working on an assignment which is to simulate the beginning of the universe using C and OpenGL/GLFW.
I'm pretty new to C and also to Xcode, which is not helping at all. I've overcome my silly ...
0
votes
1answer
35 views
Binding 2 textures, only see 1
i'm trying to bind 2 textures for my shader. But for some reason it always seems to take the last image that i defined. Am i doing something wrong?
GLuint textures[2];
glEnable(GL_TEXTURE_2D);
...
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
0answers
26 views
Linker warnings with GLFW
I am trying to use GLFW for a school project, and have followed these steps:
1) Download the win32 zip from glfw.org
2) Add /include to my solution's includes
3) Add /lib-msvc100/debug to my ...
0
votes
1answer
59 views
Problems linking against GLFW in OSX
I'm getting a ton of linker errors (included below) when I run my C++ OpenGL program through the linker. I have no problem compiling OpenGL programs that don't have a dependence on GLFW. I'm not ...
0
votes
0answers
34 views
Rendering Area does not change when GLFW window is re-sized
I'm switching from GLUT to GLFW to find that when I re-size my GLFW window, the rendering region does not change. (IE, the content being rendered stays in the same place as it was in the old window ...
0
votes
3answers
105 views
LNK4099 in GLFW console project with debug configuration
When compiling a win32 console project with GLFW in Visual Studio 2010 SP1, I am getting the following warning for debug configuration:
Warnung 1 warning LNK4099: PDB "vc100.pdb" wurde nicht mit ...
0
votes
3answers
199 views
Having a libpthread.so linking trouble on Ubuntu
I've downloaded source code from this site http://mnbayazit.com/406/bayazit
This project haves some dependencies:
Libraries: FTGL (for fonts), FreeType2 (needed by FTGL), GLFW (for windows and ...
0
votes
1answer
267 views
OpenGL Segmentation Fault
I have this program in "tut2.c":
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stddef.h>
#include <GL/glew.h>
#include <GL/glfw.h>
GLuint ...
0
votes
1answer
142 views
GLFW and codeblocks
I am having some difficulties with codeblocks 10.05 recognizing the GLFW libraries on my machine. When I create an empty project, and copy paste this code found from this GLFW tutorial >> ...
0
votes
2answers
193 views
OpenGL / GLFW appear transparent
While drawing a simple cube using opengl and glfw, the faces of the cube appear to be transparent.
Here's the code. Use the arrow keys to rotate. I've just encapsulated into a class, in my program.
...
0
votes
1answer
83 views
Pointing to a function that is a class member - glfw setKeycallback
I'm writing a glfw app, in which I've wrapped the function callse into a simple class. Im having trouble setting the key callback.
My class is defined as:
class GAME
{
private:
bool running;
...
0
votes
2answers
243 views
static compile glfw
I'm trying to compile glfw as static link on Linux Mint (based on Ubuntu 10.04) using GCC 4.4.3.
Inside my project directory i got "external/glfw" which contains glfw 2.7.1 source. I've compiled it ...
0
votes
1answer
338 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
2answers
179 views
Check if the Snake bangs into itself in game [closed]
I'm writing Snake in C++, using OpenGL and GLFW. I'm trying to implement a feature where the game exits, when the snakes head crashes into its body.
Here are the move() and CrashCheck() functions of ...
0
votes
1answer
697 views
GLFW - Failed To Open A Window
As my hunt for a cross-platform framework/library went in progress, GLFW was mentioned many times. So, I decided to try it out. Now, it seems as though I can't even init a window. :-/
#include
...
0
votes
2answers
281 views
OpenGL Not drawing
I am using GLFW as GUI for OpenGL projects. I am using my red book and testing code and well the first bit of code doesn't work at all. I want to say this is a GLFW problem because I don't have this ...
0
votes
2answers
198 views
What am I missing in my compilation / linking stage of this C++ FreeType GLFW application?
g++ -framework OpenGL GLFT_Font.cpp test.cpp -o test -Wall -pedantic -lglfw -lfreetype - pthread `freetype-config --cflags`
Undefined symbols:
"_GetEventKind", referenced from:
...
0
votes
2answers
650 views
GLFW window fails to open (Ubuntu)
When compiling and running my GLFW-based C program under Ubuntu (9.04), it fails when trying to open the window (it compiles fine, having installed the latest GLFW). I've tried varying resolutions, ...
0
votes
2answers
934 views
C++/GLFW - The right way to use Mutex objects?
I'm working on a simulation that uses multithreading extensively. The thing is that, until now i've never used any mutex objects to protect my data. And the result, is that i'm getting bunch of ...
-1
votes
1answer
301 views