3
votes
0answers
145 views

OpenGL VBO's in Haskell

Basing on this post, I was trying to figure out how to use VBO's in Haskell. I tried to fill in the bits that were not covered there: data Sprite = Sprite { spriteImage :: Image ...
2
votes
2answers
154 views

How can I capture the screen with Haskell and OpenGL?

How can I capture the screen with Haskell and OpenGL? I'm working on a Mac Mini. So, the Windows solution is not applicable and the GTK solution provided in Screen capture in Haskell? does not work ...
3
votes
2answers
92 views

Haskell OpenGl and GLUT Ambiguous occurence

I am trying an OpenGL tutorial. I am running macosx with Haskell Platform installed import Graphics.Rendering.OpenGL import Graphics.UI.GLUT main :: IO () main = do (progname, _) <- ...
2
votes
1answer
161 views

Reading pixels from OpenGL/GLUT Application

I have an application that uses OpenGL and GLUT to show some stuff on the screen. I'd like to access the colors displayed "pixel by pixel" but I'm having trouble comprehending the methods provided. ...
2
votes
1answer
76 views

New StdGen for each OpenGL/GLUT loop iteration

I have a program that displays a bunch of random triangles using Haskell, OpenGL, and GLUT. However I'd like the random triangles to change every time I click, or something of that nature (not ...
1
vote
1answer
111 views

Haskell OpenGL: Transparency not working

I am making a very simple OpenGL application with Haskell, just making some polygons appear at the moment. My main function looks like this: main :: IO () main = do (pname, _) <- ...
5
votes
1answer
291 views

OpenGL triangles unwanted edge border

I'm trying to render a square with texture. It's working, except I'm getting a pixelated line on the diagonal edge where two triangles meet each other. The texture: The render result of three ...
1
vote
0answers
69 views

Haskell OpengGL window termination

I've been using Haskell with FunGen to create a game and found a termination problem. If i close the game window clicking the "X" button , the haskell console, from which i launched the game, still ...
3
votes
2answers
215 views

image2d_t corrupted when passing to OpenCL kernel

I'm writing a pathtracer in Haskell and OpenCL, and I'm having an issue with passing an image2d_t to my kernel to write the output to. Namely, calling any of the get_image_* functions in OpenCL on the ...
5
votes
0answers
241 views

How to get GHCi to load the opengl package under GHC 7.6.1 x86-64 Windows 7?

I can successfully build executables that link against OpenGL using GHC, however I cannot get the package to load into GHCi. This is definitely a regression for me because it works on 32-bit GHC (at ...
2
votes
1answer
176 views

Coerce built-ins to their GL equivalents

I just wrote a quick Conway's Game of Life in Haskell for practice and I though that I should now animate it. I wanted to use GLUT + OpenGL and few seconds of Googling later, I had an example up and ...
2
votes
0answers
80 views

Using X Pixmaps with OpenGL and Haskell

I am a little bit confused on how to combine using the X11 library to generate a texture for OpenGL ( I am grabbing the pixmap area using https://github.com/reacocard/haskell-x11-xcomposite ) I guess ...
7
votes
2answers
277 views

Which linear algebra to use for OpenGL in Haskell?

I am trying to do some OpenGL programming in haskell. But i am confused by the current state of the libraries. OpenGL uses the Tensor package which only defines several vector types (but doesn't do so ...
0
votes
1answer
101 views

Can't comprehend “unknown OpenGL extension entry” error triggered by Haskell OpenGL program

I wrote the following program on Windows XP using GHC 7.4.1 (Haskell Platform 2012.2.0.0): mkVertexShader :: IO Bool mkVertexShader = do shader <- glCreateShader gl_VERTEX_SHADER withCString ...
1
vote
1answer
147 views

How can I convert a Haskell String into a Ptr (Ptr GLchar)?

I wish to call the function glShaderSource :: GLuint -> GLsizei -> GHC.Ptr.Ptr (GHC.Ptr.Ptr GLchar) -> GHC.Ptr.Ptr GLint -> IO () The third argument is the shader program, which ...
0
votes
1answer
371 views

What is the GLboolean values denoting true and false?

I am using Haskell's OpenGL.Raw library and I wish to use the GLboolean values for true and false, but they don't seem to be predefined in the library. How do I define these values myself?
9
votes
2answers
407 views

How does HOpenGL behave with regards to other threads and TChans in Haskell?

I'm doing some proof-of-concept work for a fairly complex video game I'd like to write in Haskell using the HOpenGL library. I started by writing a module that implements client-server event based ...
-4
votes
1answer
223 views

Haskell/OpenGL texture rendering fine unter Linux; Windows shows white; OS X black [closed]

has anyone experienced this kind of behaviour? My haskell/opengl project works perfectly under linux. Under OS X the window remains completely black, under WinXP everything seems correct ...
1
vote
1answer
127 views

Haskell Error: Not in scope: `GLFW.windowIsOpen'

I can find this in the documentation. However, whenever I compile, I get the scope error. Here is my code: import Graphics.Rendering.OpenGL as GL import Graphics.UI.GLFW as GLFW import ...
1
vote
1answer
245 views

How to adjust render depth in Haskell's OpenGL?

I'm trying to get some objects rendering in 3D space in Haskell with OpenGL. I can't figure out how to render shapes in the Z-dimension, though. Adjusting the values for the triangle's points causes ...
4
votes
1answer
372 views

JuicyPixels texture loading in Haskell OpenGL?

How do I load a texture using Haskell, OpenGL and the JuicyPixels library? I can get as far as this: loadImage :: IO () loadImage = do image <- readPng "data/Picture.png" case ...
1
vote
1answer
153 views

OpenGL mouse listener return

I'm trying to use the mouse listener in Haskell using OpenGL and have run into a problem. Apparently the return given for the x and y coordinates is a GLint. The problem is in then using these because ...
3
votes
1answer
159 views

Haskell graphics program closing too early

I'm writing a program using OpenGl and Haskell that should draw a rectangle when and where the mouse is clicked. However, the program closes as soon as I click and before the rectangle is drawn. ...
1
vote
1answer
268 views

mouse listener in Haskell

I'm trying to make a program in Haskell using opengl that draws a circle when the mouse is clicked, where it is clicked. The trouble is, I can't find anything that can show me how to make a mouse ...
3
votes
2answers
482 views

How to draw a circle in Haskell using opengl

I'm new to Opengl and want to know how to draw a circle. From my understanding, this can only be done using a lot of triangles. However, I can't find a tutorial that explains it clearly enough for me ...
0
votes
0answers
150 views

Compiling “wired in dph-seq and dph-par not found” error [closed]

I'm having a problem with compliling a program in Haskell that uses Opengl. I believe that I have everything installed correctly, but whenever I try to compile it, it fails. When looking at why it ...
1
vote
1answer
307 views

Programming in Haskell via Opengl and GLUT

Every time I try to compile and run a tutorial that I have found, I get a message saying either "Could not find module GL" or "Could not find module GLUT." I have tried replacing "import GLUT" with ...
4
votes
2answers
806 views

Drawing lines with opengl in Haskell

I'm trying to create a go board using opengl. To do this, I'm trying to draw a bunch of lines to create the grid. However, every tutorial site (including opengl's) has the examples in C++ and the ...
0
votes
1answer
222 views

Haskell: Cannot install OpenGL due to missing dependencies (which are already installed there)

I am trying to install the OpenGL-2.4.0.2 package manually, but after I download the tarball from Hackage and decompressed it, when I ran sudo runhaskell Setup.hs configure I get these: ...
1
vote
1answer
226 views

Can't get Freeglut to work with Haskell on Windows

Here is my source code I'm trying to get to work: In Main.hs: import Graphics.Rendering.OpenGL import Graphics.UI.GLUT import Bindings import Data.IORef main = do (progname,_) <- ...
3
votes
1answer
434 views

Isometric Projection using Opengl

I am trying to use opengl to make isometric drawings. According to: http://en.wikipedia.org/wiki/Isometric_projection#Mathematics "this is done by first looking straight towards one face. Next the ...
3
votes
1answer
315 views

Error installing GLFW on mac using cabal for haskell

I'm have Max OSx 10.6.8, Xcode 3.2.6 (the latest version available for my mac version). I'm using haskell but I'm having trouble using opengl. I found a suggestion a online like the following: ...
8
votes
2answers
696 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 ...
2
votes
1answer
674 views

How to install Haskell with GLUT and OpenGL?

Please help me to install Haskell with support of OpenGL and GLUT. I can't seem to find a tutorial that works in any place. I found some tutorials, but I get errors. One here Second one here The ...
9
votes
4answers
417 views

“unknown GLU entry gluOrtho2D” using opengl in Haskell

I'm on Ubuntu 11.10 using ghc version 7.0.3.20110330, running "current-version updates" of nvidia display driver. You can reproduce by running: curl http://ix.io/1t6 > Stroke.hs; ghc --make ...
7
votes
1answer
539 views

GLU NURBS rendered wrongly

EDIT: This is a library bug. I reported it to the HOpenGL mail list. I use 9-point rectangular method to represent a circle/ellipse as a NURBS. The points are p1, p2, ..., p9, p9 = p1. They lay as ...
1
vote
1answer
281 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 ...
5
votes
1answer
243 views

Calling an IO Monad inside an Arrow

Perhaps I'm going about this the wrong way, but I'm using HXT to read in some vertex data that I'd like to use in an array in HOpenGL. Vertex arrays need to be a Ptr which is created by calling ...
0
votes
2answers
640 views

glTexImage2d doesn't do anything

This problem baffles me. I am testing some Haskell bindings to OpenGL, I create a vertex shader, a fragment shader, compile the program, and draw a textured rectangle to the screen after transforming ...
4
votes
2answers
697 views

How to use glGenTextures

In C I would do the following: GLuint a; glGenTextures(1, &a); The type of glGenTextures in Haskell is: GLsizei -> Ptr GLuint -> IO () How can I get a value of the type Ptr GLuint ?
0
votes
1answer
168 views

How to call the function glMultiDrawElements :: GLenum -> GHC.Ptr.Ptr GLsizei -> GLenum -> GHC.Ptr.Ptr (GHC.Ptr.Ptr a) -> GLsizei -> IO ()

The ffunction glMultiDrawElements requires a pointer to a pointer as one of its arguments. How might one obtain a Ptr(Ptr a) from a StorableArray Int a ?
4
votes
2answers
162 views

How to call a function of type Ptr GLubyte -> IO() in Haskell

In the OpenGL Raw library is the following function: glPolygonStipple :: Ptr GLubyte -> IO () The C counterpart to this function accepts a pointer to an array, but how can I call this function ...
3
votes
1answer
2k views

How to install FTGL library on windows?

I want to use the haskell FTGL binding, which need the FTGL library. There seems no binary for windows and I can't find any useful info on how to compile it. What's the easiest way to make it work?
4
votes
1answer
370 views

HOpenGL - OpenGL window remains minimized

Following some well-known OpenGL Haskell tutorial, I've made my first HOpenGL program. Here's the code: import Graphics.Rendering.OpenGL import Graphics.UI.GLUT main = do (progname, _) <- ...
1
vote
1answer
362 views

How to make Haskell GLUT using freeglut on Windows?

How to make the Haskell GLUT binding using freeglut instead of the original GLUT on windows?
1
vote
2answers
422 views

Haskell retrieve opengl matrix (glGetFloatv)

Ok, having covered setting the matrices by hand ( Haskell loadMatrixf ) I would now like to retrieve them. How can I do this? In C it would be like this: float m[4*4]; ...
2
votes
1answer
109 views

Haskell loadMatrixf

Where is the OpenGL function for loadMatrixf and what is the type signature?
0
votes
2answers
569 views

How to change textures in OpenGL using Haskell

I'm stuck trying to get multiple textures working in OpenGL using Haskell. I've been following the NeHe tuts and some various other OpenGL resources online, but the combination of slightly different ...
0
votes
1answer
248 views

Can't install OpenGLRaw-1.1.0.1 on OS X

When I run $ cabal install OpenGLRaw I get the following errors. ... ... ... cbits/HsOpenGLRaw.c:78:20: error: stdlib.h: No such file or directory cbits/HsOpenGLRaw.c:79:19: error: ...
4
votes
1answer
464 views

What does the ($=) (dollar equals) operator do in Haskell GLUT library?

I was looking through some game code written in Haskell using the GLUT library and this operator keeps popping out everywhere. The worst part is it's completely ungooglable and I can't seem to grep ...

1 2