Searched refs:pixelFormatDesc (Results 1 – 1 of 1) sorted by relevance
232 PIXELFORMATDESCRIPTOR pixelFormatDesc; in Library() local233 deMemset(&pixelFormatDesc, 0, sizeof(pixelFormatDesc)); in Library()235 pixelFormatDesc.nSize = sizeof(pixelFormatDesc); in Library()236 pixelFormatDesc.nVersion = 1; in Library()237 pixelFormatDesc.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER; in Library()238 pixelFormatDesc.iPixelType = PFD_TYPE_RGBA; in Library()239 pixelFormatDesc.iLayerType = PFD_MAIN_PLANE; in Library()241 int pixelFormat = ChoosePixelFormat(tmpWindow.getDeviceContext(), &pixelFormatDesc); in Library()242 if (!SetPixelFormat(tmpWindow.getDeviceContext(), pixelFormat, &pixelFormatDesc)) in Library()519 PIXELFORMATDESCRIPTOR pixelFormatDesc; in Context() local[all …]