Click here to Skip to main content
15,918,168 members
Home / Discussions / C#
   

C#

 
QuestionThread scheduling [modified] Pin
Kwonhyung Roh20-Sep-09 16:58
Kwonhyung Roh20-Sep-09 16:58 
AnswerRe: Thread scheduling Pin
Dave Kreskowiak20-Sep-09 17:02
mveDave Kreskowiak20-Sep-09 17:02 
GeneralRe: Thread scheduling Pin
Kwonhyung Roh20-Sep-09 18:15
Kwonhyung Roh20-Sep-09 18:15 
GeneralRe: Thread scheduling Pin
Dave Kreskowiak21-Sep-09 2:11
mveDave Kreskowiak21-Sep-09 2:11 
GeneralRe: Thread scheduling Pin
Kwonhyung Roh21-Sep-09 17:31
Kwonhyung Roh21-Sep-09 17:31 
GeneralRe: Thread scheduling Pin
Dave Kreskowiak22-Sep-09 4:30
mveDave Kreskowiak22-Sep-09 4:30 
GeneralRe: Thread scheduling Pin
Kwonhyung Roh22-Sep-09 16:14
Kwonhyung Roh22-Sep-09 16:14 
QuestionError using tao framework Pin
billy_iii20-Sep-09 11:42
billy_iii20-Sep-09 11:42 
Hi forum...

Im trying to use the TaoFramework libraries in c# but I always get this error

Unable to load the DLL file 'freeglut.dll'. (Excepción de HRESULT: 0x8007007E)

when i call the function at this line

Glut.glutInit();


I have this code

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using Tao.FreeGlut;
using Tao.OpenGl;

...
class program
{
static int alto = 512;
static int ancho = 512;
static double imgalfaspect;

static int alto_original = alto;

static void Main(string[] args)
{
Glut.glutInit();
Glut.glutInitWindowSize(ancho, alto);
Glut.glutInitDisplayMode(Glut.GLUT_RGBA | Glut.GLUT_DOUBLE);
Glut.glutCreateWindow("test opengl");
Glut.glutDisplayFunc(display);
Glut.glutReshapeFunc(resize);%

imgalfaspect = ((double)ancho / (double)alto) * 0.5;

Glut.glutMainLoop();
}
...
}


I have added the references to my project, but i don't know what to do to fix this problem.

Thanks in advance
AnswerRe: Error using tao framework Pin
Henry Minute20-Sep-09 12:40
Henry Minute20-Sep-09 12:40 
GeneralRe: Error using tao framework Pin
billy_iii20-Sep-09 13:23
billy_iii20-Sep-09 13:23 
GeneralRe: Error using tao framework Pin
Dave Kreskowiak20-Sep-09 16:59
mveDave Kreskowiak20-Sep-09 16:59 
AnswerRe: Error using tao framework Pin
carlecomm29-Sep-09 1:25
carlecomm29-Sep-09 1:25 
QuestionCorsor position Pin
Muammar©20-Sep-09 10:29
Muammar©20-Sep-09 10:29 
AnswerRe: Corsor position Pin
Abhishek Sur20-Sep-09 10:32
professionalAbhishek Sur20-Sep-09 10:32 
AnswerRe: Corsor position Pin
Luc Pattyn20-Sep-09 11:01
sitebuilderLuc Pattyn20-Sep-09 11:01 
GeneralRe: Corsor position Pin
Muammar©20-Sep-09 11:18
Muammar©20-Sep-09 11:18 
GeneralRe: Corsor position Pin
Daniel Grunwald20-Sep-09 13:19
Daniel Grunwald20-Sep-09 13:19 
GeneralRe: Corsor position Pin
Luc Pattyn20-Sep-09 13:54
sitebuilderLuc Pattyn20-Sep-09 13:54 
QuestionNullReferenceException untraceable Pin
akhanal20-Sep-09 10:10
akhanal20-Sep-09 10:10 
AnswerRe: NullReferenceException untraceable Pin
Abhishek Sur20-Sep-09 10:31
professionalAbhishek Sur20-Sep-09 10:31 
GeneralRe: NullReferenceException untraceable [modified] Pin
akhanal20-Sep-09 10:37
akhanal20-Sep-09 10:37 
GeneralRe: NullReferenceException untraceable Pin
akhanal20-Sep-09 10:44
akhanal20-Sep-09 10:44 
GeneralRe: NullReferenceException untraceable Pin
Luc Pattyn20-Sep-09 11:03
sitebuilderLuc Pattyn20-Sep-09 11:03 
GeneralRe: NullReferenceException untraceable Pin
akhanal21-Sep-09 4:07
akhanal21-Sep-09 4:07 
GeneralRe: NullReferenceException untraceable Pin
Abhishek Sur20-Sep-09 11:04
professionalAbhishek Sur20-Sep-09 11:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.