使用mingw交叉编译windows的opengl应用程序

时间:2009-10-05 20:05:36

标签: opengl mingw cross-compiling

heya,我正在运行linux(ubuntu),

我遇到了一些麻烦。我已经尝试下载glut32.dll并将其粘贴在mingw的lib /目录中,并在include /中设置相应的头文件,但是 - 尽管编译很好 - 链接器在查找符号时遇到了严重的问题。

我该怎么做呢?我如何使用mingw为windows构建一个opengl应用程序?

感谢,

2 个答案:

答案 0 :(得分:2)

在Windows世界中,要将某些内容链接到DLL,您需要一个“导入库”。您可以将这些视为具有存根DLL符号的存根函数的静态库。你需要寻找libglut32.a。

如果你找不到它,甚至可能会有一个Visual C ++来在互联网的某个地方修改导入库转换工具...(已经有一段时间了,因为我需要这样的东西,所以也许我只是梦到那个部分向上。)

答案 1 :(得分:0)

实际上,你甚至不需要GLUT,它已经存在,只需要链接libopengl32.a,它会将可执行文件链接到系统上的本机opengl32.dll。

typedef struct RENDER_SURFACE {
    void (*redraw)(struct RENDER_SURFACE*);
    HWND hWnd;
    HINSTANCE hInstance;
    HDC hdc;
    HGLRC hrc;
    int width;
    int height;
    int pix_fmt;
    float light_position[4];
    float light_ambient[4];
    float light_diffuse[4];
    float light_specular[4];
    float light_shininess;
} RENDER_SURFACE;

static LRESULT AppProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
    RENDER_SURFACE* rs = (RENDER_SURFACE*)GetWindowLongPtr(hWnd, GWLP_USERDATA);
    if (uMsg == WM_CREATE)
    {
        RECT rc;
        PIXELFORMATDESCRIPTOR pfd;
        rs = (RENDER_SURFACE*)((LPCREATESTRUCT)lParam)->lpCreateParams;
        SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)rs);
        rs->hWnd = hWnd;
        rs->hdc = GetDC(hWnd);
        GetClientRect(hWnd, &rc);
        rs->width = rc.right-rc.left;
        rs->height = rc.bottom-rc.top;
        memset(&pfd, 0, sizeof(pfd));
        pfd.nSize = sizeof(pfd);
        pfd.nVersion = 1;
        pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_DOUBLEBUFFER | PFD_SUPPORT_OPENGL;
        pfd.cColorBits = 24;
        pfd.cDepthBits = 32;
        rs->pix_fmt = ChoosePixelFormat(rs->hdc, &pfd); 
        if (!rs->pix_fmt)
        {
            MessageBox(hWnd, "ChoosePixelFormat FAILED!", "Fatal Error", MB_OK | MB_ICONSTOP);
            DestroyWindow(hWnd);
            return -1;
        }
        SetPixelFormat(rs->hdc, rs->pix_fmt, &pfd);
        rs->hrc = wglCreateContext(rs->hdc);
        wglMakeCurrent(rs->hdc, rs->hrc);
        /* SwapBuffers(rs->hdc); */
        return 0;
    }
    else if (uMsg == WM_PAINT)
    {
        /* other stuffs */
    }
    return DefWindowProc(hWnd, uMsg, wParam, lParam);
}