Lines Matching refs:pixelFormatDesc
206 PIXELFORMATDESCRIPTOR pixelFormatDesc; in Library() local
207 deMemset(&pixelFormatDesc, 0, sizeof(pixelFormatDesc)); in Library()
209 pixelFormatDesc.nSize = sizeof(pixelFormatDesc); in Library()
210 pixelFormatDesc.nVersion = 1; in Library()
211 pixelFormatDesc.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER; in Library()
212 pixelFormatDesc.iPixelType = PFD_TYPE_RGBA; in Library()
213 pixelFormatDesc.iLayerType = PFD_MAIN_PLANE; in Library()
215 int pixelFormat = ChoosePixelFormat(tmpWindow.getDeviceContext(), &pixelFormatDesc); in Library()
216 if (!SetPixelFormat(tmpWindow.getDeviceContext(), pixelFormat, &pixelFormatDesc)) in Library()
402 PIXELFORMATDESCRIPTOR pixelFormatDesc; in Context() local
403 deMemset(&pixelFormatDesc, 0, sizeof(pixelFormatDesc)); in Context()
405 if (!DescribePixelFormat(deviceCtx, pixelFormat, sizeof(pixelFormatDesc), &pixelFormatDesc)) in Context()
408 if (!SetPixelFormat(deviceCtx, pixelFormat, &pixelFormatDesc)) in Context()