HomeSort by relevance Sort by last modified time
    Searched refs:GL_hdc (Results 1 - 2 of 2) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl.c 298 GL_hdc = GetDC(SDL_Window);
299 if ( GL_hdc == NULL ) {
313 pixel_format = ChoosePixelFormat(GL_hdc, &GL_pfd);
319 if ( !SetPixelFormat(GL_hdc, pixel_format, &GL_pfd) ) {
333 DescribePixelFormat(GL_hdc, pixel_format, sizeof(GL_pfd), &GL_pfd);
335 GL_hrc = this->gl_data->wglCreateContext(GL_hdc);
397 if ( GL_hdc ) {
398 ReleaseDC(SDL_Window, GL_hdc);
399 GL_hdc = NULL;
415 if ( ! this->gl_data->wglMakeCurrent(GL_hdc, GL_hrc) )
    [all...]
SDL_wingl_c.h 34 HDC GL_hdc;
60 #define GL_hdc (this->gl_data->GL_hdc)

Completed in 39 milliseconds