English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Please Explain what is GDI - OpenGL - DirectX .
Where I should use these.
Thanks.

2006-06-27 05:43:51 · 4 answers · asked by Anonymous in Computers & Internet Programming & Design

4 answers

1) The Graphics Device Interface (GDI, sometimes called Graphical Device Interface) is one of the three core components or "subsystems", together with the kernel and the user (window manager), of Microsoft Windows.

GDI is a Microsoft Windows standard for representing graphical objects and transmitting them to output devices such as monitors and printers.


2) DirectX is a collection of APIs for easily handling tasks related to game programming on the Microsoft Windows operating system. It is most widely used in the development of computer games for Microsoft Windows. The DirectX SDK is available free from Microsoft. The DirectX runtime was originally redistributed by computer game developers along with their games, but later it was included in Windows. Game developers still often include an updated version of DirectX that prompts installation automatically after the game installation to ensure proper program functionality. DirectX 9.0c is the latest release version of DirectX. Direct3D 10 Beta is available as of Windows Vista build 5238. The latest versions of DirectX are still usually included with PC games because the API is often updated.

check this microsoft's direct X site
http://www.microsoft.com/windows/directx/default.mspx

3) OpenGL (Open Graphics Library) is a standard specification defining a cross-language cross-platform API for writing applications that produce 3D computer graphics (and 2D computer graphics as well). The interface consists of over 250 different function calls which can be used to draw complex three-dimensional scenes from simple primitives. OpenGL was developed by Silicon Graphics and is popular in the video games industry where it competes with Direct3D on Microsoft Windows platforms (see Direct3D vs. OpenGL). OpenGL is widely used in CAD, virtual reality, scientific visualization, information visualization, flight simulation and video game development.

OpenGL serves two main purposes:

* To hide the complexities of interfacing with different 3D accelerators, by presenting the programmer with a single, uniform API.
* To hide the differing capabilities of hardware platforms, by requiring that all implementations support the full OpenGL feature set (using software emulation if necessary).

2006-06-27 21:12:57 · answer #1 · answered by Krex 3 · 4 0

Short for Graphical Device Interface, a Windows standard for representing graphical objects and transmitting them to output devices, such as monitors and printers.

OpenGL (Open Graphics Library) is the computer industry's standard application program interface (API) for defining 2-D and 3-D graphic images. Prior to OpenGL, any company developing a graphical application typically had to rewrite the graphics part of it for each operating system platform and had to be cognizant of the graphics hardware as well. With OpenGL, an application can create the same effects in any operating system using any OpenGL-adhering graphics adapter.

DirectX is an application program interface (API) for creating and managing graphic images and multimedia effects in applications such as games or active Web pages that will run in Microsoft's Windows operating systems. (Such an application program might be written in C++, or Visual C/C++, or Java.) The capability to "play" DirectX applications comes as an integrated part of Microsoft's Internet Explorer Web browser. (A 3-D player is optionally downloadable.)

2006-06-27 05:53:35 · answer #2 · answered by Paultech 7 · 0 0

Many probably just made text based games and created user interfaces in command line languages. For example, in school I had to create a board game using pascal (an old programming language) and we had to draw out the UI pixel by pixel.

2016-03-27 05:55:02 · answer #3 · answered by ? 4 · 0 0

They are all a library of functions for creating Computer Graphics.

2006-06-27 05:55:39 · answer #4 · answered by ag_iitkgp 7 · 0 0

fedest.com, questions and answers