Tagged Questions

3
votes
3answers
3k views

When Should One Call glGetError?

glLoadIdentity says GL_INVALID_OPERATION is generated if glLoadIdentity is executed between the execution of glBegin and the corresponding execution of glEnd. But GL_INVALID_OPERATION is ...
2
votes
3answers
1k views

OpenGl 16 bit display via Tao/C#

I have some scientific image data that's coming out of a detector device in a 16 bit range which then gets rendered in an image. In order to display this data, I'm using OpenGL, because it should ...
1
vote
0answers
202 views

SimpleOpenGlControl on Usercontrol

I am creating an usercontrol contains a "Tao.Platform.Windows.SimpleOpenGlControl" . In my control's constructor, I have InitializeComponent(); ogl1.InitializeContexts(); . My problem: When I use ...
1
vote
2answers
251 views

C# OpenGL Texture Does not show up

In this example I've tried as much as I can to simplify the problem in the hope that someone can solve it for me. I could not find a simple working example of C# OpenGL code to display a texture. So ...
1
vote
1answer
102 views

mdi child form don't work via opengl app in .NET

This is my first question. I start to computer graphics programming with opengl via Tao Framework. Everything going well but today I tried to work with MDI forms. My application crashed. It is a bit ...
1
vote
1answer
877 views

Tao OpenGL Framework SimpleOpenGLControl - When will it redraw, when won't it?

I think my last question may have been to specific, so ignoring that one all together, I have a new question that is more general: I am using C# with Visual Studio Express 2008. I am also using the ...
1
vote
2answers
497 views

glDrawPixels causes AccessViolationException

I am using glDrawPixels to display an image. I know, I should probably be using textures but there are reasons I'm not. Well at least not for now. Anyways, image being displayed is frequently being ...
0
votes
1answer
90 views

run program opengl in C# using framework Tao in 64 bits

I have a program opengl in C# using framework Tao, when i run the code in the platform target to x86, i have not a problem,but when i run the code in the platform target to x32, it stops abruptly and ...
0
votes
2answers
70 views

Question about glBindTexture

This is a method I use to draw sprites: public void DrawSprite(Sprite sprite) { Gl.glBegin(Gl.GL_TRIANGLES); { for (int i = 0; i < ...
0
votes
0answers
169 views

C# OpenGL Load Texture Error

I am having difficulty loading a texture using the following code: if (!Il.ilLoadImage("test.jpg")) { System.Diagnostics.Debug.Assert(false,"Could not open file, [" + path + ...
0
votes
2answers
269 views

Can't find reference Tao.OpenGl and Tao.Platform.Windows in Add reference window in MSV C# 2010 Express Edtn

Downloaded and installed the Tao framework. But visual studio shows no clue about it. I thought it will find automatically. Does it have anything to do with GAC? Here is a snapshot:
0
votes
2answers
758 views

Trying to set VBO:s in C# using TAO and OpenGL TK framework

I'm trying to set my vertices, indices and texture points to VBO:s and the draw them with my draw method, all this in C# under TAO/OpenGL TK framwork. But my screen shows only a black screen. I've ...
0
votes
1answer
306 views

How do I perform picking with the Tao framework (or OpenTK)

Can anyone help me achieve picking using the Tao framework (or OpenTK) ?
0
votes
3answers
1k views

opengl in C# using Tao.OpenGL

I am working on an OpenGL project for a computer graphics course, and I have not been actively programming for around a years time (military training). I am drawing an absolute blank on how to include ...
0
votes
2answers
423 views

Setting fullscreen in Tao Opengl

Using the SimpleOpenGlControl from Tao.Platform.Windows, how can I set it to fullscreen mode, or will I have to use glut? My Solution FormBorderStyle = FormBorderStyle.None; WindowState = ...
0
votes
0answers
695 views

Textures not working in opengl/Tao for C# on intel chipsets

I've got a lot of OpenGl rendering code in a C# .NET 3.5 sp1 application. Some of the code can be found in this question. Huge problem: The code is not running at all on intel chipsets, such as the ...