Click here to Skip to main content
Click here to Skip to main content
Articles » Multimedia » OpenGL » General » Downloads
 

Zoom An Image With Different Interpolation Types

By , 21 Sep 2011
 
ZoomInterpolationApplication.zip
ZoomInterpolation.exe
ZoomInterpolation_Application.zip
ZoomInterpolation.exe
ZoomInterpolation_Code.zip
ZoomInterpolation
pixel_shader_Bell.cg
pixel_shader_BiCubic.cg
pixel_shader_BiLinear.cg
pixel_shader_BSpline.cg
pixel_shader_CatMull.cg
res
Flower.bmp
ZoomInterpolation.ico
ZoomInterpolation.dsp
ZoomInterpolation.dsw
ZoomInterpolation_Source.zip
pixel_shader_Bell.cg
pixel_shader_BiCubic.cg
pixel_shader_BiLinear.cg
pixel_shader_BSpline.cg
pixel_shader_CatMull.cg
Flower.bmp
ZoomInterpolation.ico
ZoomInterpolation.dsp
ZoomInterpolation.dsw
#pragma once
#include "GL\gl.h"
#include "Gl\glu.h"
// This class setup opengl. Craetes opengl rendering context and make it current.
class GLSetup
{
public:
	GLSetup(void);
	~GLSetup(void);
	bool InitGL( HWND pRenderWindow_i );
    bool CheckExtension( const CHAR* pExtensionToCheck_i );
	void Exit();
	void Draw();

private:
	HGLRC m_hRenderContext;
	HDC   m_hDeviceContext;
	HWND  m_hRenderWindow;
};

By viewing downloads associated with this article you agree to the Terms of use 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)

About the Author

Santhosh G_
India India
Member
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 21 Sep 2011
Article Copyright 2011 by Santhosh G_
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid