Click here to Skip to main content
15,886,518 members
Articles / Desktop Programming / MFC

Writing a Platform and GUI Toolkit Independent OpenGL Class

Rate me:
Please Sign up or sign in to vote.
4.92/5 (33 votes)
1 Nov 2010CPOL13 min read 96.9K   7.5K   89  
Article showing how to write OS and GUI toolkit portable OpenGL view class

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLView", "GLView\GLView.vcproj", "{0EEE3919-D41C-4621-91AF-9952E675792E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glviewgtkapp", "GLViewGTKApp\msvc\glviewgtkapp.vcproj", "{06D0A701-409C-48CF-BC4A-F30B5805FBC2}"
	ProjectSection(ProjectDependencies) = postProject
		{0EEE3919-D41C-4621-91AF-9952E675792E} = {0EEE3919-D41C-4621-91AF-9952E675792E}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLViewMFCDlgApp", "GLViewMFCDlgApp\GLViewMFCDlgApp.vcproj", "{8AD4B0D6-530C-496B-AD9B-009C15F25E4E}"
	ProjectSection(ProjectDependencies) = postProject
		{0EEE3919-D41C-4621-91AF-9952E675792E} = {0EEE3919-D41C-4621-91AF-9952E675792E}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLViewQtApp", "GLViewQtApp\GLViewQtApp.vcproj", "{B1872A76-C63A-3ECE-B7D9-28EA62DD2B4F}"
	ProjectSection(ProjectDependencies) = postProject
		{0EEE3919-D41C-4621-91AF-9952E675792E} = {0EEE3919-D41C-4621-91AF-9952E675792E}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLViewMFCMDIApp", "GLViewMFCMDIApp\GLViewMFCMDIApp.vcproj", "{16F7E6B9-DB57-4D18-9088-BE995450278C}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{0EEE3919-D41C-4621-91AF-9952E675792E}.Debug|Win32.ActiveCfg = Debug|Win32
		{0EEE3919-D41C-4621-91AF-9952E675792E}.Debug|Win32.Build.0 = Debug|Win32
		{0EEE3919-D41C-4621-91AF-9952E675792E}.Release|Win32.ActiveCfg = Release|Win32
		{0EEE3919-D41C-4621-91AF-9952E675792E}.Release|Win32.Build.0 = Release|Win32
		{06D0A701-409C-48CF-BC4A-F30B5805FBC2}.Debug|Win32.ActiveCfg = Debug|Win32
		{06D0A701-409C-48CF-BC4A-F30B5805FBC2}.Debug|Win32.Build.0 = Debug|Win32
		{06D0A701-409C-48CF-BC4A-F30B5805FBC2}.Release|Win32.ActiveCfg = Release|Win32
		{06D0A701-409C-48CF-BC4A-F30B5805FBC2}.Release|Win32.Build.0 = Release|Win32
		{8AD4B0D6-530C-496B-AD9B-009C15F25E4E}.Debug|Win32.ActiveCfg = Debug|Win32
		{8AD4B0D6-530C-496B-AD9B-009C15F25E4E}.Debug|Win32.Build.0 = Debug|Win32
		{8AD4B0D6-530C-496B-AD9B-009C15F25E4E}.Release|Win32.ActiveCfg = Release|Win32
		{8AD4B0D6-530C-496B-AD9B-009C15F25E4E}.Release|Win32.Build.0 = Release|Win32
		{B1872A76-C63A-3ECE-B7D9-28EA62DD2B4F}.Debug|Win32.ActiveCfg = Debug|Win32
		{B1872A76-C63A-3ECE-B7D9-28EA62DD2B4F}.Debug|Win32.Build.0 = Debug|Win32
		{B1872A76-C63A-3ECE-B7D9-28EA62DD2B4F}.Release|Win32.ActiveCfg = Release|Win32
		{B1872A76-C63A-3ECE-B7D9-28EA62DD2B4F}.Release|Win32.Build.0 = Release|Win32
		{16F7E6B9-DB57-4D18-9088-BE995450278C}.Debug|Win32.ActiveCfg = Debug|Win32
		{16F7E6B9-DB57-4D18-9088-BE995450278C}.Debug|Win32.Build.0 = Debug|Win32
		{16F7E6B9-DB57-4D18-9088-BE995450278C}.Release|Win32.ActiveCfg = Release|Win32
		{16F7E6B9-DB57-4D18-9088-BE995450278C}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Product Manager Mahindra & Mahindra
India India
Sharjith is a Mechanical Engineer with strong passion for Automobiles, Aircrafts and Software development.

Comments and Discussions