GNU coding styles and standards
Reference standards Don’t in any circumstances refer to Unix source code for or during your...
Read MorePosted by M. Saqib | Oct 8, 2008 | Programming Styles: General programming Styles |
Reference standards Don’t in any circumstances refer to Unix source code for or during your...
Read MorePosted by M. Saqib | Oct 7, 2008 | Microsoft Direct-X Programming |
Over here I’ll shove in some basics, like coordinate systems, world and object coordinate systems, etc. For now I’ll assume you’re at least a little familiar with 3D programming. Blah blah blah, differences between immediate and retained mode, etc etc.
Read MorePosted by M. Saqib | Oct 6, 2008 | Microsoft Direct-X Programming |
This is a very simple DirectDraw sample using Microsoft DirectX under Visual C++.
Read MorePosted by M. Saqib | Oct 5, 2008 | Microsoft Direct-X Programming |
Screen modes come in several flavours, based on how many bits are used to store the color of each pixel on the screen. Naturally, the more bits you use per pixel, the more colours you can display at once; but there is more data to move into graphics memory to update the screen.
Read MorePosted by M. Saqib | Oct 4, 2008 | Microsoft Direct-X Programming |
One of the main purposes of DirectX is to provide a standard way of accessing many different proprietary hardware devices. DirectX is comprised of application programming interfaces (APIs) that are grouped into two classes: The DirectX Foundation layer and The DirectX Media layer. These APIs enable programs to directly access many of your computer”s hardware devices.
Read MorePosted by M. Saqib | Sep 26, 2008 | C# Programming: Different Articles on C# Programming |
In C#, an exception is a runtime error or unexpected behavior that occurs during the execution of...
Read MorePosted by M. Saqib | Sep 25, 2008 | C++ Programming: Different Articles on C++ Programming |
As we begin the study of C++ and object oriented programming, a few comments are in order to help you get started. Since the field of object oriented programming is probably new to you, you will find that there is a significant amount of new terminology for you to grasp. This is true of any new endeavor and you should be warned not to be intimidated by all of the new concepts.
Read MorePosted by M. Saqib | Sep 24, 2008 | C# Programming: Different Articles on C# Programming |
Every application begins with a namespace in C# .NET that has the same name as the project. Of course, you can change the namespace to anything you like in order to maintain compatibility with other projects. For example we declared namespace Mycplus.CSharpBasics while taking an Overview of C#. We can write the whole application with in one namespace or we can declare multiple namespaces as needed in our project. The general syntax of declaring a namespace is
Read More