The Open Toolkit is an advanced, low-level C# library that wraps OpenGL, OpenCL and OpenAL. It is suitable for games, scientific applications and any other project that requires 3d graphics, audio or compute functionality.
0
votes
1answer
41 views
How to color vertices?
How can I set color for vertex in opengl es 2.0?
Now I use color array:
float[] TriangleColors = new float[]{
1.0f, 1.0f, 0.0f,
1.0f, 1.0f, ...
1
vote
1answer
84 views
OpenTK.Graphics.OpenGL.GL obsolete?
I just started using OpenTK but it said the GL class is obsolete. The error was 'OpenTK.Graphics.GL' is obsolete: 'Use OptnTK Graphics.OpenGL or one of the specific profiles instead.'. I don't get ...
0
votes
0answers
47 views
OpenGL Fastest way of rotating single objects
I have an unknown amount of polygons, all facing the camera (-z) with different positions. I want to rotate each polygon around its center by different angles. Would it be faster to use glRotate and ...
0
votes
2answers
39 views
Get the bounds of the plane visible at a specific z coordinate
Using OpenTK, I've created a window (800x600) with a vertical FOV of 90°.
I want to make a 2D game with a background image that fits on the whole screen.
What I want is the plane at a variable z ...
0
votes
1answer
25 views
OpenTK ClearColor not working properly when I use a second userform
My program is CAD type software in which I use OpenTK for graphics. The program works as intended - with one exception. I want to allow the user to change the color of things rendered starting with ...
0
votes
0answers
17 views
Import .obj to OpenTK visual basic
I'm trying to import a wavefront .obj to my OpenTK program, an OBJ is a normal text file that looks like this:
g Cube
v -100 0 100
v -100 200 100
v 100 0 100
v 100 200 100
v 100 0 -100
v 100 200 ...
0
votes
0answers
31 views
Model wont show in the display
I have written a little program which parses and displays a .obj model, however when I run my program the display appears to be blank.
Most likely the problematic class:
public partial class Form1 : ...
0
votes
0answers
63 views
Cant find an error in my program
I have been working on a program that could parse a .obj model file however every time I run my program I am presented with this gift:
Here are my classes:
public partial class Form1 : Form
{
...
0
votes
0answers
31 views
Learning openTK for a beginner
I know this isn't really a programming question and more of a discussion, but I am completely lost as to where to start learning openTK. My ultimate goal would to be able to display .obj models. I ...
0
votes
1answer
43 views
Port OpenGl buffer to XNA
I am trying to port an application with some OpenTK (C# Opengl implementation) to XNA/MonoGame and I have come to a buffer, but I cannot figure out how to port this because there does not seem to be ...
0
votes
1answer
60 views
OpenTK mouse picking
I have developed a small C# sample to pick the point by using OpenTK and winforms
There is a method to draw the Squares and there is another method to pick the triangle. Somehow I am not getting any ...
0
votes
1answer
80 views
OpenTK Picking sample crashing
I am going through OpenTK (opentk-2010-10-06.exe) sample code which is provided with the OpenTK installation. I am interested on picking example, but it crashes. but other samples are working. What is ...
0
votes
1answer
64 views
Save cube in variable and apply scale/rotate/move OpenTK
I am creating simple 3D editor. I now can draw simple primitives like cube but, I don't know how to save this object to som variable and then copy it to other coordinates. I also don't know how ...
0
votes
1answer
26 views
GL.getUniformLocation Specular Lighting returning a negative value
I'm basically attempting Specular Lighting in OpenTK (c# implementation of OpenGL) and I've managed to get Ambient and Diffuse lighting working, but now my calls to GL.getUniformLocation are returning ...
0
votes
0answers
53 views
opentk Rotation. Matrix4.CreateRotation
I use Monotouch and opentTK for opengl usage.
I have problem with rotation figure.
If i am rotate from X axis, i get incorrect Y axis rotation after origin of coordinates.
public class FigureView : ...
0
votes
3answers
169 views
How to make a billboard spherical
Following this turorial here
I have managed to create a cylindrical billboard (it utilizes a geometry shader which takes points and produces quads). The problem is that when i move the camera so that ...
0
votes
1answer
39 views
Translate and rotate image outside of glControl1_Paint using OpenTK?
I am making CAD type software in VS2010 Pro using a C# Windows Form Application and OpenTK. Nothing fancy; I just want to be able to read in some basic shapes and draw them. I'm not sure if this makes ...
1
vote
1answer
141 views
OpenTK C# Windows Phone (8)
I am trying to port a desktop C# project to Windows Phone (8) but my problem is that it uses OpenTK in some parts to show some 3d models. After some research I have determined that OpenTK is a .NET or ...
1
vote
2answers
70 views
Monogame missing method exception with monodevelop
I have follow the installation guide in here but it seems don't working for me. Here is the exception message when I run the program:
System.MissingMethodException has been thrown
Method not found: ...
2
votes
2answers
61 views
Window forms red x, but I can't find error notification
I am using the OpenTK GLControl (a .Net OpenGL winforms control) to paint some things using opengl. The problem I am now facing is I am getting a big red cross or x on the windows form where the ...
4
votes
1answer
100 views
Stencil buffer depth in OpenTK
I`m using OpenTK for OpenGL and C#.
I need to use stencil buffer and currently wondering how do I set StencilBuffer depth.
As I know earlier was TaoFramework and it`s control had property where this ...
0
votes
1answer
155 views
Best Way To Learn 3D Programming On Very Old Laptop? [closed]
For the past few months I have been refreshing my knowledge of C#. I have the basics down and a lot of the intermediate stuff (referring to classes, polymorphism, inheritance, etc. as intermediate.) I ...
0
votes
2answers
103 views
How to use GL.Ortho in OpenTK correctly?
I paint some figures using GLControl (OpenTK) in Windows forms. However, the problem is that I cannot figure out, how to use GL.Ortho() method.
Here is the code I have written:
public partial class ...
0
votes
0answers
46 views
GLControl does not exist in the namespace 'OpenTK'
I use OpenTK and MonoDevelop.
I use GLcontext
GLcontrol glControl1 = new GLControl();
I catch error:
'GLControl' does not exist in the namespace 'OpenTK'
I added OpenTK.dll, ...
0
votes
1answer
139 views
Drawing points in top of texture openGL
I have a texture drawn in a GLcontrol and I want to draw points on top of it. Instead, I get the full texture set to the colour of the point I want to draw. I guess that I have to disable the texture ...
0
votes
1answer
35 views
Transparent faces causing faces behind them to disappear
I'm programming a game with the .NET library OpenTK. I'm trying to create a fog effect near certain areas by drawing a series of transparent faces. However, the faces turn everything behind them to ...
1
vote
1answer
80 views
background thread rendering a texture
I'm writing a simple raycaster in C# using OpenTK.
I want my view to refresh 60 times a second, so I have a timer calling my Render() function, that shows a texture on screen.
I want to use a ...
0
votes
1answer
59 views
How to print OpenTK (OpenGL) or change device context?
With OpenTK / OpenGL I can draw onto the Winforms all fine.
But how do I draw on to the printer?
I worked on a ganttchart and used this piece of code for printing but I am not sure how to get the ...
0
votes
1answer
57 views
Wierd sounds & beeping when rendering with vbo
im using C# and Opentk to render voxels, i used display list which were fine but slow, so i switched to VBO, since then every time im rendering something with vbo, there are wierd sounds and beeping ...
0
votes
0answers
25 views
RenderBufferTarget enum in OpenTK 1.0.0.0
I have a program that uses the RenderBufferTarget enum, but, it this doesn't seem to be in OpenTK 1.0.0.0 in "MonoAndroid\v4.1\OpenTK-1.0.dll". It is present in the OpenTK 1.1.0.0 in ...
0
votes
2answers
120 views
OpenTK basic triangle not drawing as it should
I am trying to draw the triangle with the colours and verticies specified but currently it seems like its picking some colour numbers for the positions and is not doing what its supposed to do
using ...
1
vote
1answer
40 views
Synchronizing view state between nodes in a rendering cluster
I'm building a display wall demo application.
The environment:
N machines, each driving up to six displays
Wired gigabit switch
OpenTK application to draw the pretty pictures, running 1 copy on ...
0
votes
1answer
151 views
3d development in C# possible options? [closed]
I need to build an interactive 3D graphics tool where users will be able to move meshes around and visualize them from different angles, zoom in, zoom out, i.e. the usual renderer interactivity. The ...
0
votes
1answer
222 views
OpenGL 2.0 Drawing with Monodroid (using OpenTK)
I'm attempting to setup a cross platform application that uses OpenTK-1.0 to draw some basic 3D objects using the programmable pipeline approach in OpenGL ES 2.0. I have the iOS side of the ...
0
votes
1answer
159 views
Depth texture and fbo issues on opentk c# with intel hd 3000
I'm currently facing a problem with intel hd graphics hardware to implement shadow mapping effects. I think that the code isn't far from what i want to have as results because this code snippet works ...
2
votes
0answers
67 views
Easiest way to play audio in an openTK application, using any method
My goal here is to be able to play an MP3 in an OpenTK/OpenGL application (.NET but NOT windows forms), being able to stop/play/pause it, access/set the position of the audio file, and have it play to ...
0
votes
1answer
35 views
playing audio in openTK
What's the easiest way to play audio (WAV, MP3, OGG, doesn't matter) in an OpenTK application? I need to be able to play it, stop it, and get the current position in seconds at any time. I've used ...
0
votes
0answers
39 views
opentk glcontrol auto render?
So I have this nice c# application written with OpenTK (OpenGL) ... it uses a full screen GL Window and like it's supposed to, it auto runs the OnRenderFrame method whenever it can, and I get a great ...
0
votes
1answer
142 views
Read pixels from a rectangle in an OpenGL texture
I know the glGetTexImage OpenGL function allows reading the pixels from an entire texture. Is there an OpenGL function that does the same thing but allows passing a rectangle to restrict the pixels ...
0
votes
2answers
55 views
How to get stuff to show up in my window?
I've been playing with OpenGL. I'm confused because most commands seem to call a static method instead of the window object I create - by what arcane methods does the compiler divine my target window, ...
0
votes
0answers
68 views
Recommendations for MVVM framework for high performant cross platform .NET mapping SDK [closed]
I have used Caliburn Micro and Prism but have no experience on other frameworks. I have also run through this link to MVVM frameworks but still need some guidance from you gurus out there.
I am ...
0
votes
2answers
130 views
OpenGL Clipping, depth and camera
Having trouble with clipping/view not sure
Im simply trying to rotate and scale a rectangular box (of lines not quads) in a windows form (using OpenTK)
This is simple enough but When i zoom/scale ...
0
votes
1answer
164 views
Sharing values between kinect class and opentk onrenderframe class
I use Kinect and OpenTK in my application. In one class I use WindowLoaded method, which in loop calls SensorSkeletonFrameReady and write to console computed coordinates of right hand.
In main ...
0
votes
0answers
140 views
Can't load Uncompressed R5G6B5 DDS file
I'm trying to load this DDS file into a test OpenGL application. Unfortunately, I only get a black box. The file (according to the program) is in R5G6B5 format and opens fine in GIMP.
This is the ...
0
votes
0answers
156 views
SpriteBatch.End() throws OpenTK.Graphics.GraphicsErrorException: InvalidEnum
I decided to begin game development with MonoGame but I am facing a problem.
When I try to add a sprite to the screen with a SpriteBatch object like I can read in many XNA tutorial, I get an ...
0
votes
2answers
80 views
Darken whole screen
I'm working on a game using OpenTK in C#. Currently trying to implement the pause menu system.
One feature, that I need your help with, is darkening the whole screen when the menu appears.
Is there ...
0
votes
1answer
158 views
How to use OpenTK.GLControl for Gtk# application
I want to use OpenTK library for my little GUI Gtk# application. I know, that I should include OpenTK.dll to Windows.Forms project and than I should include GLControl to toolbox and use it. But I ...
2
votes
3answers
109 views
Call Apple-specific OpenGL commands through MonoTouch/OpenTK
If I understand things correctly, Apple's OpenGL ES 2.0 implementation uses some methods from OpenGL ES 3.0, for example
glBindVertexArrayAPPLE
or
glBindVertexArrayOES
instead of
...
1
vote
1answer
99 views
Can I use OpenCL with Monogame?
I'm looking at Monogame for developing with. The site mentions it has OpenTK "under the hood". Does this mean I could have solid access to OpenCL using Monogame, or has OpenCL been split off into ...
1
vote
1answer
92 views
How to calculate Rayintersection 3D for Picking
Im struggeling to implement a Function which basically tells me, if a Ray "gets close enough" to an object
Basically I implemented Implementing Ray Picking
@nornagon soloution to create the Ray. My ...




