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
0answers
221 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 ...
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
2answers
273 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
2answers
823 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 ...
1
vote
1answer
104 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
889 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
501 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
2answers
42 views
Record video from opengl
I am using Tao framework and I have a simple opengl control.
How can I record a video from this control and save it to a file?
0
votes
1answer
14 views
Error with tao SimpleOpenGlControl
I am creating an usercontrol contains a "Tao.Platform.Windows.SimpleOpenGlControl".
In my control's constructor, I have
{
InitializeComponent();
simpleOpenGlControl1.InitializeContexts();
...
0
votes
0answers
31 views
Trouble with loading images using the Tao Framework
I've been following a book about C# programming but I've found loading images to be quite tricky... Here's a sample of the code which is causing the issues:
Il.ilLoadImage(path);
Ilu.iluFlipImage();
...
0
votes
1answer
113 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
79 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
177 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
294 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
1answer
325 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
2k 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
430 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
1answer
718 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 ...