Click here to Skip to main content
15,867,594 members
Articles / Desktop Programming / Windows Forms

SharpGL: A C# OpenGL Class Library

Rate me:
Please Sign up or sign in to vote.
4.94/5 (178 votes)
7 Apr 2014GPL35 min read 1.9M   63.1K   463   336
Use OpenGL in WinForms or WPF applications, directly or with a powerful Scene Graph.

sharpgl/SharpGL-Logo.jpg

SharpGL is a project that lets you use OpenGL in your Windows Forms or WPF applications with ease! With all OpenGL functions up to the latest 4.2 release, all major extensions, a powerful scene graph and project templates for Visual Studio, you have all the tools you need to create compelling 3D applications - or to port existing code to a new platform.

Too busy to read the introduction to SharpGL? Check out the Getting Started Guide instead.

A picture paints a thousand words, so let's see some screenshots first!

Cel Shading - This is the latest sample, it shows you how to use modern OpenGL features like Vertex Buffers and Shaders. It will be written up as as complete article soon.

Image 2

Radial Blur - The Radial Blur Sample shows how you can create advanced lighting effects using standard OpenGL functions.

sharpgl/RadialBlurSample.jpg

Utah Teapot WPF Sample - Direct OpenGL Rendering in a WPF application - with no airspace or Windows Forms Host objects. The SharpGL OpenGLControl provides an OpenGL rendering surface directly in your application.

sharpgl/WpfTeapotSample.jpg

Texturing Sample - Speed up OpenGL development by utilising classes like the Texture class, used to load and transform image data into OpenGL textures.

sharpgl/TexturesSample.jpg

Hit Testing Sample - By deriving scene elements from IBoundable, you can let your own custom classes participate in hit testing.

sharpgl/HitTestSample.jpg

What is SharpGL?

SharpGL is a collection of class libraries that let you use OpenGL functionality in your code. Class libraries are:

SharpGL - Contains the main OpenGL object - this object wraps all OpenGL functions, enumerations and extensions.

SharpGL.SceneGraph - Contains all wrappers for OpenGL objects and Scene Elements - Lights, Materials, Textures, NURBs, Shaders and more.

SharpGL.WinForms - Contains Windows Forms Controls for your applications.

SharpGL.WPF - Contains WPF Controls for your applications.

SharpGL.Serialization - Contains classes used to load geometry and data from 3D Studio Max files, Discreet obj files and trueSpace files.

Between these libraries, SharpGL gives to a wrapper to all current OpenGL functions, all major extensions and a rich set of objects for advanced functionality. You can use SharpGL to perform 'traditional' OpenGL drawing or you can use the SceneGraph to implement more application specific tasks.

How do I use SharpGL?

It's simple! If you have a chunk of code like the below:

//  Set the line width and point size.
glLineWidth(3.0f);
glPointSize(2.0f);

Then it would be written as:

//  Get a reference to the OpenGL object.
OpenGL gl = openGLCtrl1.OpenGL;

//  Set the line width and point size.
gl.LineWidth(3.0f);
gl.PointSize(2.0f);

This is the first fundamental - any OpenGL function that begins with 'gl' or 'glu' is a member function of the SharpGL.OpenGL object, with the 'gl' or 'glu' removed.

This takes care of the most basic functions - however, there is an exception to this rule. The code below:

//  Set the color.
glColor3f(0.5f, 0.5f, 0.5f);

//  Output some vertices.
glVertex3f(2.0f, 3.0f 4.0f);
glVertex4f(2.0f, 1.0f, 10.0f, 1.0f);

Would be written as:

//  Set the color.
gl.Color3(0.5f, 0.5f, 0.5f);

//  Output some vertices.
gl.Vertex3(2.0f, 3.0f 4.0f);
gl.Vertex4(2.0f, 1.0f, 10.0f, 1.0f);

Note the absense of the 'f' at the end of the function. This is the second fundamental - SharpGL wrapper functions never have a type postfix. OpenGL functions often end in 'f' (for float), 'fv' (for float vector), 'i' (for integer) and so on. We do not need to have unique names in C# so we do not apply these postfixes to the function name. We do keep the number however - as in the case where arrays are passed in, the wrapper needs to know how many elements are to be used.

This takes care of functions that take fundamental types as parameters. For other types of functions, we have one more thing to remember. The code below:

//  Set the polygon mode.
glPolygonMode(GL_FRONT, GL_FILL);

is written as:

//  Set the polygon mode.
gl.PolygonMode(OpenGL.GL_FRONT, OpenGL.GL_FILL);

or:

//  Set the polygon mode.
gl.PolygonMode(PolygonFace.Front, PolygonMode.Fill);

This describes the final fundamental. OpenGL constants are all defined as constant members of the SharpGL.OpenGL class, and have exactly the same names.

This takes care of how 'standard' C OpenGL code would be written using SharpGL. As an aid to the programmer, many of the standard OpenGL functions have overloads that take strong types. In the snippet above (PolygonMode) we can use OpenGL constants or the PolygonFace and PolygonMode enumerations - both are perfectly valid. The first is more in line with typical C code, the second gives the developer more in the way of intellisense to aid them.

Coding with SharpGL

Coding with SharpGL is very straightforward. Some of the benefits you will notice are:

Code Hints and Intellisense

sharpgl/Screenshot_CodeHints.png

All core OpenGL functions are fully documented, meaning you get the information you need as you type - less looking through The Red Book and more productivity.

Enumerations for Core Functions

sharpgl/Screenshot_Enumerations.png

Improve readability and reduce errors by using type-safe enumerations for core functions.

Extensions and Core Support to 4.2

sharpgl/Screenshot_Extensions.png

All major extension functions available, deprecated functions are marked as deprecated, extensions that have made it into the standard are present both in extension form and core form.

Your first SharpGL Application

You can have a SharpGL application running in five minutes - here's how.

1. Install the SharpGL Visual Studio Extension

Download the SharpGL Visual Studio Extension and extract it. Double click on the *.vsix file - the install confirmation will be shown. Choose 'Install'.

sharpgl/ConfirmInstallation.png

2. Run Visual Studio and create a New Project

Run Visual Studio and choose 'New Project'. You'll see that under C# there are two new templates - SharpGL Windows Forms Application and SharpGL WPF Application. Choose your preferred platform.

sharpgl/NewWpfApplication.png

3. Run the Application

Hit Ctrl-F5 or press 'Run'. Your new SharpGL application runs up, showing a rotating pyramid. You have three functions by default:

OpenGLDraw - Used to do OpenGL rendering.
OpenGLInitialized - Used to perform any OpenGL initialization.
Resize - Used to create a projection transformation.

The code that comes with the template does the basic for you - and there are many sample applications provided with the source code as baselines for your own project.

sharpgl/WpfApp.png

Related Articles

SharpGL is big. OpenGL is big and very mature now. Rather than squeeze too much detail into this article, I will write separate articles on specific topics. If you have any suggestions or questions then please comment below.

OpenGL in .NET - Getting Started

SharpGL Documentation

Using SharpGL in a WPF Application

Keep Up To Date

Up to date information on SharpGL development is available from the SharpGL CodePlex site or the SharpGL GitHub site. You can always get the latest binaries from Nuget, just check out the Getting Started Guide.

I write about various interesting areas I come across when developing SharpGL on my blog at http://www.dwmkerr.com.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
United Kingdom United Kingdom
Follow my blog at www.dwmkerr.com and find out about my charity at www.childrenshomesnepal.org.

Comments and Discussions

 
AnswerRe: other file formats Pin
Dave Kerr8-Sep-11 4:47
mentorDave Kerr8-Sep-11 4:47 
QuestionHow to handle mouse behavior Pin
MoslenterFIBO5-Sep-11 21:40
MoslenterFIBO5-Sep-11 21:40 
Questionnamespace name 'SharpGL' could not be found Pin
schubert011-Sep-11 5:48
schubert011-Sep-11 5:48 
AnswerRe: namespace name 'SharpGL' could not be found Pin
schubert011-Sep-11 10:17
schubert011-Sep-11 10:17 
QuestionSite Down Pin
Dave Kerr23-Aug-11 22:33
mentorDave Kerr23-Aug-11 22:33 
QuestionTrouble with Textures if using more than one OpenGLCtrl? Pin
AikenDev6-Aug-11 11:28
AikenDev6-Aug-11 11:28 
Questionmemory overflow when using a SharpGL control in Visual Studio 2009 Pin
DavidCHeath13-Jul-11 5:34
DavidCHeath13-Jul-11 5:34 
AnswerRe: memory overflow when using a SharpGL control in Visual Studio 2009 Pin
Dave Kerr23-Aug-11 22:33
mentorDave Kerr23-Aug-11 22:33 
GeneralRe: memory overflow when using a SharpGL control in Visual Studio 2009 Pin
DavidCHeath24-Aug-11 1:53
DavidCHeath24-Aug-11 1:53 
GeneralRe: memory overflow when using a SharpGL control in Visual Studio 2009 Pin
Dave Kerr9-Sep-11 8:19
mentorDave Kerr9-Sep-11 8:19 
GeneralRe: memory overflow when using a SharpGL control in Visual Studio 2009 Pin
radioman.lt23-Sep-11 2:01
radioman.lt23-Sep-11 2:01 
QuestionRe: memory overflow when using a SharpGL control in Visual Studio 2009 Pin
Vladimir Svyatski26-Sep-11 8:56
professionalVladimir Svyatski26-Sep-11 8:56 
Questionhaving trouble with using SharpGL in my C# applications Pin
Ramin Yavari3-Jul-11 0:30
Ramin Yavari3-Jul-11 0:30 
AnswerRe: having trouble with using SharpGL in my C# applications Pin
WE-JP3-Jul-11 18:39
WE-JP3-Jul-11 18:39 
GeneralRe: having trouble with using SharpGL in my C# applications Pin
Ramin Yavari3-Jul-11 19:40
Ramin Yavari3-Jul-11 19:40 
GeneralSource code link broken Pin
MascotDev20-May-11 20:46
MascotDev20-May-11 20:46 
GeneralMy vote of 5 Pin
MascotDev20-May-11 20:41
MascotDev20-May-11 20:41 
GeneralReadPixels Pin
MKramer9924-Apr-11 15:20
MKramer9924-Apr-11 15:20 
GeneralRe: ReadPixels Pin
Dave Kerr12-Sep-11 1:31
mentorDave Kerr12-Sep-11 1:31 
Generalsite down Pin
lzmik9-Jan-11 11:28
lzmik9-Jan-11 11:28 
GeneralRe: site down Pin
rakesh198819-Feb-11 9:59
rakesh198819-Feb-11 9:59 
GeneralMy vote of 5 Pin
fyf200723-Dec-10 2:32
fyf200723-Dec-10 2:32 
Questiondraw a face with 4 point in example 3 Pin
zahra pirmoradian22-Dec-10 7:26
zahra pirmoradian22-Dec-10 7:26 
GeneralUnreachable web site Pin
torokze01330-Nov-10 18:17
torokze01330-Nov-10 18:17 
GeneralRe: Unreachable web site Pin
lzmik5-Jan-11 6:10
lzmik5-Jan-11 6:10 

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.