HomeSort by: relevance | last modified time | path
    Searched defs:pfd (Results 1 - 25 of 30) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/wgl/
stw_pixelformat.h 43 PIXELFORMATDESCRIPTOR pfd; member in struct:stw_pixelformat_info
stw_ext_pbuffer.c 87 PIXELFORMATDESCRIPTOR pfd; local
272 bRet = SetPixelFormat(hDC, iDisplayablePixelFormat, &pfd);
stw_context.c 144 PIXELFORMATDESCRIPTOR pfd; local
148 if (!DescribePixelFormat(hdc, iPixelFormat, sizeof(pfd), &pfd))
150 return stw_pixelformat_choose(hdc, &pfd);
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
win32_glx.c 80 /* The bReserved flag of the pfd contains the
140 PIXELFORMATDESCRIPTOR pfd; local
148 memset(&pfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
149 pfd.nSize = (sizeof(PIXELFORMATDESCRIPTOR));
150 pfd.nVersion = 1;
153 pfd.dwFlags = PFD_SUPPORT_OPENGL | PFD_DRAW_TO_WINDOW;
154 pfd.iPixelType = PFD_TYPE_COLORINDEX;
155 pfd.cColorBits = 32;
156 pfd.cDepthBits = 0;
161 pfd.dwFlags |= PFD_SUPPORT_OPENGL
    [all...]
win32_x11.c 42 PIXELFORMATDESCRIPTOR pfd; local
48 memset(&pfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
50 sizeof(PIXELFORMATDESCRIPTOR), &pfd);
52 if (!(pfd.dwFlags & PFD_NEED_PALETTE ||
53 pfd.iPixelType == PFD_TYPE_COLORINDEX))
58 n = 1 << pfd.cColorBits;
73 if (pfd.iPixelType == PFD_TYPE_RGBA) {
74 int redMask = (1 << pfd.cRedBits) - 1;
75 int greenMask = (1 << pfd.cGreenBits) - 1;
76 int blueMask = (1 << pfd.cBlueBits) - 1
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/wgl/
stw_pixelformat.h 47 PIXELFORMATDESCRIPTOR pfd; member in struct:stw_pixelformat_info
stw_ext_pbuffer.c 86 PIXELFORMATDESCRIPTOR pfd; local
264 bRet = SetPixelFormat(GetDC(hWnd), iDisplayablePixelFormat, &pfd);
stw_context.c 152 PIXELFORMATDESCRIPTOR pfd; local
156 if (!DescribePixelFormat(hdc, iPixelFormat, sizeof(pfd), &pfd))
158 return stw_pixelformat_choose(hdc, &pfd);
  /xsrc/external/mit/libepoxy/dist/test/
wgl_common.c 33 PIXELFORMATDESCRIPTOR pfd = { local
55 pixel_format = ChoosePixelFormat(hdc, &pfd);
61 if (SetPixelFormat(hdc, pixel_format, &pfd) != TRUE) {
  /xsrc/external/mit/xorg-server/dist/test/bigreq/
request-length.c 72 struct pollfd pfd = { local
76 poll(&pfd, 1, -1);
78 if (pfd.revents & POLLHUP) {
  /xsrc/external/mit/MesaLib/dist/src/gallium/targets/libgl-gdi/tests/
wgl_tests.cpp 71 PIXELFORMATDESCRIPTOR pfd = { local
91 int pixel_format = ChoosePixelFormat(_hdc, &pfd);
94 if (!SetPixelFormat(_hdc, pixel_format, &pfd))
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/linux/
lnx_apm.c 159 int fd, pfd; local
167 if (access(APM_PROC, R_OK) || ((pfd = open(APM_PROC, O_RDONLY)) == -1)) {
174 close(pfd);
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/linux/
lnx_apm.c 160 int fd, pfd; local
169 ((pfd = open( APM_PROC, O_RDONLY)) == -1)) {
175 close(pfd);
  /xsrc/external/mit/luit/dist/
sys.c 102 struct pollfd pfd[1]; local
105 pfd[0].fd = fd;
106 pfd[0].events = POLLOUT;
107 pfd[0].revents = 0;
109 rc = poll(pfd, 1, -1);
112 else if (pfd[0].revents & (POLLOUT | POLLERR | POLLHUP))
140 struct pollfd pfd[2]; local
143 pfd[0].fd = fd1;
144 pfd[1].fd = fd2;
145 pfd[0].events = pfd[1].events = POLLIN
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/wgl/
sharedtex_mt.c 119 PIXELFORMATDESCRIPTOR pfd; local
148 memset(&pfd, 0, sizeof(pfd));
149 pfd.cColorBits = 24;
150 pfd.cDepthBits = 24;
151 pfd.dwFlags = PFD_DOUBLEBUFFER | PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
152 pfd.iLayerType = PFD_MAIN_PLANE;
153 pfd.iPixelType = PFD_TYPE_RGBA;
154 pfd.nSize = sizeof(pfd);
407 PIXELFORMATDESCRIPTOR pfd; local
    [all...]
wglinfo.c 60 PIXELFORMATDESCRIPTOR pfd; member in struct:format_info
97 PIXELFORMATDESCRIPTOR pfd; local
133 memset(&pfd, 0, sizeof(pfd));
134 pfd.cColorBits = 3;
135 pfd.cRedBits = 1;
136 pfd.cGreenBits = 1;
137 pfd.cBlueBits = 1;
138 pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
139 pfd.iLayerType = PFD_MAIN_PLANE
    [all...]
wglthreads.c 418 PIXELFORMATDESCRIPTOR pfd; local
453 memset(&pfd, 0, sizeof(pfd));
454 pfd.cColorBits = 24;
455 pfd.cDepthBits = 24;
456 pfd.dwFlags = PFD_DOUBLEBUFFER | PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
457 pfd.iLayerType = PFD_MAIN_PLANE;
458 pfd.iPixelType = PFD_TYPE_RGBA;
459 pfd.nSize = sizeof(pfd);
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_present.c 891 struct pollfd pfd; local
894 pfd.fd = sna->kgem.fd;
895 pfd.events = POLLIN;
896 while (poll(&pfd, 1, 0) == 1)
sna_driver.c 790 struct pollfd pfd; local
795 pfd.fd = udev_monitor_get_fd(sna->uevent_monitor);
796 pfd.events = POLLIN;
801 while (poll(&pfd, 1, 0) > 0) {
sna_dri2.c 3249 struct pollfd pfd; local
3250 pfd.fd = sna->kgem.fd;
3251 pfd.events = POLLIN;
3252 return poll(&pfd, 1, 0) == 1;
  /xsrc/external/mit/libxcb/dist/src/
xcb_in.c 389 struct pollfd pfd; local
390 pfd.fd = fd;
391 pfd.events = POLLIN;
392 pfd.revents = 0;
394 ret = poll(&pfd, 1, -1);
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_driver.c 882 struct pollfd pfd; local
887 pfd.fd = udev_monitor_get_fd(sna->uevent_monitor);
888 pfd.events = POLLIN;
890 while (poll(&pfd, 1, 0) > 0)
891 sna_handle_uevents(pfd.fd, sna);
  /xsrc/external/mit/MesaLib/dist/src/intel/perf/
intel_perf_query.c 970 struct pollfd pfd; local
972 pfd.fd = perf_ctx->oa_stream_fd;
973 pfd.events = POLLIN;
974 pfd.revents = 0;
976 if (poll(&pfd, 1, 0) < 0) {
981 if (!(pfd.revents & POLLIN))
  /xsrc/external/mit/xorg-server/dist/hw/xwin/glx/
indirect.c 191 static void pfdOut(const PIXELFORMATDESCRIPTOR * pfd);
194 if (pfd->dwFlags & flag) { \
200 pfdOut(const PIXELFORMATDESCRIPTOR * pfd)
205 ErrorF("nSize = %u\n", pfd->nSize);
206 ErrorF("nVersion = %u\n", pfd->nVersion);
207 ErrorF("dwFlags = %u = {", (unsigned int)pfd->dwFlags);
229 ErrorF("iPixelType = %hu = %s\n", pfd->iPixelType,
230 (pfd->iPixelType ==
232 ErrorF("cColorBits = %hhu\n", pfd->cColorBits);
233 ErrorF("cRedBits = %hhu\n", pfd->cRedBits)
1200 PIXELFORMATDESCRIPTOR pfd; local
1611 PIXELFORMATDESCRIPTOR pfd = { local
1823 PIXELFORMATDESCRIPTOR pfd; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xwin/glx/
indirect.c 222 static void pfdOut(const PIXELFORMATDESCRIPTOR *pfd);
225 if (pfd->dwFlags & flag) { \
230 static void pfdOut(const PIXELFORMATDESCRIPTOR *pfd)
234 ErrorF("nSize = %u\n", pfd->nSize);
235 ErrorF("nVersion = %u\n", pfd->nVersion);
236 ErrorF("dwFlags = %lu = {", pfd->dwFlags);
255 ErrorF("iPixelType = %hu = %s\n", pfd->iPixelType,
256 (pfd->iPixelType == PFD_TYPE_RGBA ? "PFD_TYPE_RGBA" : "PFD_TYPE_COLORINDEX"));
257 ErrorF("cColorBits = %hhu\n", pfd->cColorBits);
258 ErrorF("cRedBits = %hhu\n", pfd->cRedBits)
1019 PIXELFORMATDESCRIPTOR pfd; local
1564 PIXELFORMATDESCRIPTOR pfd = { local
1732 PIXELFORMATDESCRIPTOR pfd; local
    [all...]

Completed in 27 milliseconds

1 2