Home page for OpenTK: http://www.opentk.com/
17
votes
3answers
531 views
How to join overlapping circles?
I want to visually join two circles that are overlapping so that
becomes
I already have methods for partial circles, but now I need to know how large the overlapping angle for earch circle is, ...
4
votes
1answer
396 views
Texture is lacking colors
I have a following picture:
Window displays two textures, the left texture is generated by binding it to a FBO and rendering to FBO, 50 random triangles.
The right texture is generated by ...
4
votes
3answers
593 views
To use or not to use VSync
I'm deciding on whether or not to use VSync for a new game that I've been developing using OpenGL. The goal is to provide the user with the best gaming experience, and to have a good balance between ...
4
votes
1answer
241 views
Collision checking on slopes
I'm working on a new game, and am trying to detect whether or not the player (on a slope) is colliding with a given mesh based off of their coordinates relative to the coordinates of the slope. I'm ...
4
votes
4answers
700 views
Runtime code injection using DynamicMethod?
Consider the following trivial code:
using System;
class Test
{
delegate int FooDelegate(int i);
FooDelegate Foo = FooImplementation;
static int FooImplementation(int i)
{
...
3
votes
1answer
139 views
Applying modeling matrix to view matrix = failure
I've got a problem with moving and rotating objects in OpenGL. I'm using C# and OpenTK (Mono), but I guess the problem is with me not understanding the OpenGL part, so you might be able to help me ...
3
votes
3answers
399 views
Which library in Visual C# for graphics programming, Tao or OpenTK?
I heard that newest OpenGL does not have glBegin anymore. In other words things change a lot, and I was wondering which library should I use for OpenGL programming in c#?
I will do graphics ...
3
votes
1answer
432 views
How do I draw a triangle using OpenTK?
I'm not sure why this code isn't simply drawing a triangle to screen (orthographically). I'm using OpenTK 1.1 which is the same thing as OpenGL 1.1.
List<Vector3> simpleVertices = new ...
3
votes
2answers
172 views
API agnostic Vector3, Matrix, etc.?
I'm trying to keep my game logic API-agnostic. In doing so, I don't want to use Unity3D's Vector3 struct, or XNA's, etc. What's the best way to do this? It seems like it would be awfully cast-heavy if ...
3
votes
1answer
1k views
OpenTK text animation
Does anybody know how to do, or where to find some good examples, for scrolling (animating) 2D text using OpenTK framework. I need something like bottom (top) scrolling tickers on news TV channels.
...
2
votes
1answer
32 views
OpenTK stencil buffer
I'm new to opengl and I'm struggling to get the stencilbuffer to work for a simple case;
I have two textures, one being a bitmap and one being a "mask", with which I'm trying to hide some parts from ...
2
votes
1answer
60 views
Why is my PNG texture not coming out with transparency?
The bottom right image should have a transparent background.
I load my Notch's PNG via these functions:
public void Image2D(Bitmap bmp, int mipmapReductionLevel = 0)
{
var rect = new ...
2
votes
2answers
81 views
MonoTouch OpenTK and UniformMatrix4
I'm trying to pass an OpenTK Matrix4 to a shader uniform, but there doesn't seem to be a suitable overload for GL.UniformMatrix4. The overloads accept either float or float[] or ref float. Similarly ...
2
votes
3answers
131 views
Only fire events at a specific time in C#
I am writing a video game in C#, and I would like to handle certain events (e.g. keyboard/mouse events) only at a specific point in my game loop. For example, is there a way to write something like ...
2
votes
1answer
400 views
How do I make a custom vertex format with OpenGL
I am writing my own engine using OpenTK (basically just OpenGL bindings for C#, gl* becomes GL.*) and I'm going to be storing a lot of vertex buffers with several thousand vertices in each. Therefore ...
2
votes
1answer
217 views
VBOs Using Interleaved Vertices in C#
I am trying to use VBOs to draw my model in in C# using OpenTK. In my online research I read in many places that it is good practice to make the size of the interleaved data structure an exact ...
2
votes
4answers
144 views
how to find overlapping of circle
Hi there I made an application which has two balls.Red and Yellow.
User has to drag RED BALL and drop it over the YELLOW BALL.it is in X-Y Plane.now i want to calculate what is the accuracy is the ...
2
votes
1answer
303 views
How to embed SDL video in an existing OpenGL project
I'm working on an OpenGL game, and would like to play video on 3D surfaces within the game. SDL seems to be an excellent choice for video playback, but is it possible to create the surface inside of ...
2
votes
5answers
425 views
C# - A faster alternative to Convert.ToSingle()
I'm working on a program which reads millions of floating point numbers from a text file. This program runs inside of a game that I'm designing, so I need it to be fast (I'm loading an obj file). So ...
2
votes
1answer
72 views
App using 3D & 3rd-party plugins - forward compatible OpenGL or Direct3D?
I'm writing an app that's going to use 3rd-party created plugins to render all kinds of 3D trickery.
My main application is to create the context / render-object and a rendertarget/framebufferobject. ...
2
votes
2answers
492 views
OpenTK-based game stutters intermittently
I'm currently developing a game using OpenTK for rendering; C#, .Net 4.0, OpenGL 2.
Running maximized (not full screen, but taking up all the available screen space) on 1280x1024 resolution, I'm ...
2
votes
1answer
315 views
OpenGL Normals don't work?
I'm working on a OpenGL project and I want at least a little lighting in it.
I'm trying to use OpenGLs built in lighting for a while now but I'm not having much success.
Models I load have their ...
2
votes
2answers
342 views
GL Project doesn't work properly
I'm using code which tries to work like Glu.Project() since OpenTK doesn't support Glu.
Vector4 pos = new Vector4(s.Position.X, 0.0f, s.Position.Y, 1.0f);
Matrix4 mov = new Matrix4();
...
2
votes
2answers
105 views
Carbon ReceiveNextEvent and secondary threads
Imagine a cross-platform library that has to create its own windows without relying on WinForms/GTK#/WPF/MonoMac/etc (this is OpenTK in case anyone is interested).
Here is the deal: Windows and ...
2
votes
1answer
388 views
difference between openTK and cloo?
what is the difference between using openTk and cloo for developing openCL applications?
2
votes
1answer
188 views
Changing Resolution in OpenTK
I've been searching around for this, I've managed to find out out to change the size of our window, and how to change the resolution of the monitor.
But I can't seem to find how to tell OpenGL where ...
2
votes
2answers
657 views
What's wrong with my project and unproject functions?
I'm using OpenTK for a game in C#, and it doesn't come with the project and unproject functions, which convert between world and screen coordinates. Well, it does, but they're deprecated and I ...
1
vote
2answers
65 views
How to lock cursor to game window?
I'm trying to implement camera movement for an FPS game. I think I've almost got it, but there's just a few more kinks to work out. I've got my mouse movement set up like this:
protected override ...
1
vote
1answer
52 views
Load png with OpenTK and MonoDroid
I'm looking for an example of loading a png-file on MonoDroid using OpenTK. Anyone?
Thanks!
1
vote
3answers
189 views
Glu-less example of drawing a cube?
I'm trying to get back into OpenGL, but my knowledge and math are rusty now. I used to use C++, but I prefer C# now... trying out OpenTK. Apparently Glu has been deprecated since GL 3.1, so I'm trying ...
1
vote
0answers
73 views
OpenTK circle rotation
I'm working on my first project using openTk. I'm creating virtual arcball for 3D model rotation. It works fine, but I need to add circle which won't rotate with model. This circle should visualize ...
1
vote
1answer
134 views
OpenTK Write text to screen with a Power of Two bitmapped texture
I've got an issue where I'm one of the lucky people who need a Power Of Two (POT) texture and cannot seem to use NPOTs.
Normally, this doesn't bug me too much because I'll just make sure any textures ...
1
vote
1answer
139 views
MonoTouch: Enable Multisampling in OpenGL ES 2.0
Is there any way to activate multisampling with MonoTouch and OpenGL ES 2.0?
I can't find the apple extension in the framework, so i think it's not implemented?
1
vote
2answers
231 views
Projecting a 3D point to 2D screen coordinate OpenTK
Using Monotouch and OpenTK I am trying to get the screen coordinate of one 3D point. I have my world view projection matrix set up, and OpenGL makes sense of it and projects my 3D model perfectly, but ...
1
vote
1answer
112 views
Setting the depth buffer content quickly in OpenGL ES 2.0
I am using OpenTK, opengl ES 2.0, and want to clear the depth buffer to one loaded externally for each redraw.
What I want to achieve is to clear the screen to a prerendered image and its depth ...
1
vote
2answers
117 views
Sphere without fill in 3D graphic
I want to draw a cube and circles like this (sphere without fill). I'm using OpenTK
http://farm7.static.flickr.com/6074/6097051938_cb0b798ce0_z.jpg
I've been having issue as below:
I've try to draw ...
1
vote
1answer
109 views
How would I create a more dynamic uniform shader?
I'm trying to create a uniform buffer object (UBO), and I need to fill the array with uniforms. The way I am currently doing it is with a hard coded structure.
...
1
vote
0answers
177 views
Continuously updating an OpenTK GLControl in WindowsFormsHost in WPF - How?
I have an OpenTK GLControl embedden in a WindowsFormsHost in my WPF application.
I want to continuously update and render it.
In Winforms a solution would be to attach the UpdateAndRender method to ...
1
vote
1answer
342 views
Drawing from a list of vertices using OpenTK/MonoTouch?
This is a very simple and straight forward question, I realize that, but I've been mulling over google searches and haven't really found an answer to what I thought would be a simple question.
I have ...
1
vote
1answer
222 views
Texture makes entire scene Black and White? OpenTK
I have a texture where it is a 4x4 grid in a 256x256 pixel jpg. If i use that picture for my texture, my entire scene turns black and white. However if I use a different pattern, a checkerboard, the ...
1
vote
1answer
352 views
Drawing a tetrahedron in OpenTK
I made a simple spinning tetrahedron application with OpenTK. My problem is that the last face is missing. I guess because I'm making a wrong order of vertices.
GL.Begin(BeginMode.Triangles);
...
1
vote
2answers
420 views
Wireframe visible through OpenGL drawn cubes, any ideas?
I'm a newbie to OpenGL/ES and OpenTK, so forgive me if my understanding/terminology is a little off.
Basically,
I'm drawing a series of [white] triangle-based-cubes using a Vertex Buffer Object ...
1
vote
1answer
103 views
Enumerate all pixel formats with AGL - how? (Mac OS X)
I would like to create a list of all available pixel formats for OpenGL. On Windows, I can do this by calling DescribePixelFormat in a loop, increasing the pixel format id, until it returns false.
...
1
vote
1answer
633 views
Remove minimize/maximize buttons from window, OpenTK
I need to disable/remove the minimize and maximize buttons in window form.
I don't know how to access the form from my OpenTK.GameWindow, any help is appreciated.
1
vote
2answers
1k views
1
vote
2answers
757 views
Cloo OpenCL c# Problem
I am trying to get a simple Cloo program to run but it is not working, can anyone tell me why?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using ...
1
vote
1answer
730 views
openTK vs openCL.NET
I am getting started with openCL on .NET. How is openTK compared to openCL.NET - which is better?
1
vote
1answer
1k views
Should I use .NET/Mono/Tao/OpenTK/… something else?
I'm pretty confused by the multitude of frameworks to choose from:
I would like to be cross platform, possible even try to make an application for my mobile phone. Probably a game, but could be ...
0
votes
1answer
41 views
OpenTK (OpenGL) in VB .NET
I was trying to learn how to do openGL within a VB .NET environment and it seems that the Tao framework or OpenTK is recommended with OpenTK having a higher recommendation so that is what I chose to ...
0
votes
1answer
59 views
openTK c# roatating cube example
i am using C# (visual studio 2008) to develop a slot machine,
using OpenTK for using openGL in my project
we have done the basic functionality but the we cant get a code to draw a cube that can ...