1 / 7

Introduction to OpenGL

Introduction to OpenGL By NematAllah Ahmadyan About OpenGL Open Graphic Library is an open-source library for displaying 2D/3D shapes . a software interface to graphics hardware. implementation Mesa3D Linux mostly GLUT Linux, ported to Win32 Using GLUT under Win32

Gabriel
Download Presentation

Introduction to OpenGL

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction toOpenGL By NematAllah Ahmadyan

  2. About OpenGL • Open Graphic Library is an open-source library for displaying 2D/3D shapes. • a software interface to graphics hardware.

  3. implementation • Mesa3D • Linux mostly • GLUT • Linux, ported to Win32

  4. Using GLUT under Win32 • Obtain GLUT from web • http://192.48.159.181/resources/libraries/glut/glut_downloads.html • Some IDEs ( like Dev-Cpp ) comes with bundled OpenGL/Glut • #include <gl/gl.h> • #include <gl/glut.h> // handles windows

  5. Create a Window And add event handler Calculate the moment And motion, No Enable OpenGL Calculate the screen points Finished? Yes Clear the device Draw the shape(s) Disable OpenGL Exit

  6. Prototype • LRESULT CALLBACK WndProc(HWND hWnd, UINT message,WPARAM wParam, LPARAM lParam); • void EnableOpenGL(HWND hWnd, HDC *hDC, HGLRC *hRC); • void DisableOpenGL(HWND hWnd, HDC hDC, HGLRC hRC); • void Simulate(); • int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow)

More Related