九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
OpenGL VS2008 環(huán)境配置
 


[VS2008具體示例]
1,新建工程:菜單-文件-新建-項(xiàng)目-Visual C++-Win32 項(xiàng)目-工程名-確定-空項(xiàng)目-完成。
2,加入源文件:解決方案資源管理器中的源文件點(diǎn)擊右鍵-添加-新建項(xiàng)-C++文件-輸入名稱(chēng)-確定-編寫(xiě)代碼(可以參考后面的示例代碼)。
3,設(shè)置連接庫(kù): 項(xiàng)目-屬性(快捷鍵ALT+F7) -配置屬性-連接器-輸入-附加依賴(lài)項(xiàng) 中加入opengl32.lib glu32.lib,注意用空格隔開(kāi)各*.lib。
4,編譯連接運(yùn)行。

[示例代碼]
#include <windows.h>
#include <gl/gl.h>
#include <gl/glu.h>

HWND hWnd;
HDC hDC;
HGLRC hRC;

void SetupPixelFormat()
{
    PIXELFORMATDESCRIPTOR pfd,* ppfd;
    int pixelformat;
    ppfd=&pfd;
    ppfd->nSize=sizeof(PIXELFORMATDESCRIPTOR);
    ppfd->nVersion=1;
    ppfd->dwFlags=PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
    ppfd->dwLayerMask=PFD_MAIN_PLANE;
    ppfd->iPixelType=PFD_TYPE_COLORINDEX;
    ppfd->cColorBits=16;
    ppfd->cDepthBits=16;
    ppfd->cAccumBits=0;
    ppfd->cStencilBits=0;

    pixelformat=ChoosePixelFormat(hDC,ppfd);
    SetPixelFormat(hDC,pixelformat,ppfd);
}

//To init the function

void InitGraphics()
{
     hDC=GetDC(hWnd);
     SetupPixelFormat();
     hRC=wglCreateContext(hDC);
     wglMakeCurrent(hDC,hRC);
     glClearColor(0,0,0,0.5);
     glClearDepth(1.0);
     glEnable(GL_DEPTH_TEST);
}

void ResizeGraphics()
{
     RECT rect;
     GetClientRect(hWnd,&rect);
     int width=rect.right;
     int height=rect.bottom;

     GLfloat aspect=(GLfloat)width/height;

     glViewport(0,0,width,height);
     glMatrixMode(GL_PROJECTION);
     glLoadIdentity();
     gluPerspective(45.0,aspect,1.0,100.0);
     glMatrixMode(GL_MODELVIEW);
}

void DrawGraphics()
{
     glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
     glLoadIdentity();
     glTranslated(0,0,-10);
     glBegin(GL_QUADS);
     glColor3d(1,0,0);
     glVertex3d(-2,2,0);
     glVertex3d(2,2,0);
     glVertex3d(2,-2,0);
     glVertex3d(-2,-2,0);
     glEnd();
     SwapBuffers(hDC);
}

long WINAPI MainWndProc(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
{
     switch(uMsg)
    {
       case WM_SIZE:
           ResizeGraphics();
           break;
       case WM_CLOSE:
           DestroyWindow(hWnd);
           break;
       case WM_DESTROY:
           PostQuitMessage(0);
           break;
       default:
           return DefWindowProc(hWnd,uMsg,wParam,lParam);
      }
       return 1;
}

int WINAPI WinMain(HINSTANCE hInstance,
       HINSTANCE hPrevInstance,
       LPSTR lpCmdLine,
       int nShowCmd)
{
const TCHAR AppName[]=TEXT("OpenGL Sample");
WNDCLASS cwnd;
MSG msg;

cwnd.style=0;
cwnd.lpfnWndProc=MainWndProc;
cwnd.cbClsExtra=0;
cwnd.cbWndExtra=0;
cwnd.hInstance=hInstance;
cwnd.hIcon=LoadIcon(hInstance,AppName);
cwnd.hCursor=LoadCursor(NULL,IDC_ARROW);
cwnd.hbrBackground=(HBRUSH)(COLOR_WINDOW+1);
cwnd.lpszMenuName=AppName;
cwnd.lpszClassName=AppName;

if(! RegisterClass(&cwnd))
   return 1;
hWnd=CreateWindow(AppName,AppName,
   WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS | WS_CLIPCHILDREN,
   CW_USEDEFAULT,
   CW_USEDEFAULT,
   800,600,NULL,NULL,hInstance,NULL);
if(! hWnd) return 0;
InitGraphics();
ShowWindow(hWnd,nShowCmd);
UpdateWindow(hWnd);
while(1)
{
   if(PeekMessage(&msg,NULL,0,0,PM_NOREMOVE))
   {
    if(! GetMessage(&msg,NULL,0,0))
     return true;
    TranslateMessage(&msg);
    DispatchMessage(&msg);
   }
   DrawGraphics();
}

wglDeleteContext(hRC);
ReleaseDC(hWnd,hDC);
return msg.wParam;
}

另外:
openGL有一個(gè)glut庫(kù)能支持更快的開(kāi)發(fā)openGL程序,里面包含了glut.h glut.lib glut.dll glut32.lib glut32.dll

下載并安裝glut庫(kù) opengl的glut庫(kù) GLUT不是OpenGL所必須的,但它會(huì)給我們的學(xué)習(xí)帶來(lái)一定的方便,推薦安裝。 Windows環(huán)境下的GLUT下載地址:(大小約為150k) http://www.opengl.org/resources/libraries/glut/glutdlls37beta.zip 
Windows環(huán)境下安裝GLUT的步驟:  

*.dll 當(dāng)然是復(fù)制到windows/system32中
*.lib
如果是VC6.0,復(fù)制到 */VC98/Lib 中
如果是VS2008,復(fù)制到 */VC/lib 中

Glut.h
如果是VC6.0,復(fù)制到 */VC98/include/gl 中
如果是VS2008,復(fù)制到 */VC/include/gl (沒(méi)有g(shù)l目錄就新建一個(gè)) 中

[一個(gè)glut支持的代碼(可以用來(lái)檢測(cè)glut是否添加成功)] (這里使用控制臺(tái)程序 測(cè)試 ,將是一個(gè)白色矩形)
#include <GL/glut.h>
void myDisplay()
{
glClear(GL_COLOR_BUFFER_BIT);
glRectf(-0.5f, -0.5f, 0.5f, 0.5f);
glFlush();
}
int main(int argc, char *argv[])
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB | GLUT_SINGLE);
glutInitWindowPosition(100, 100);
glutInitWindowSize(400, 400);
glutCreateWindow("第一個(gè)OpenGL程序");
glutDisplayFunc(&myDisplay);
glutMainLoop();
return 0;
}

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶(hù)發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
fedora23 安裝OpenGL
10 《高效學(xué)習(xí)OpenGL》之Hello OpenGl
用MFC實(shí)現(xiàn)OpenGL編程
NeHe OpenGL教程第一課,DancingWind翻譯
OpenGL繪制長(zhǎng)方體
Eclipse下OpenGL開(kāi)發(fā)環(huán)境配置
更多類(lèi)似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服