Searched refs:iWidth (Results 1 - 25 of 33) sorted by relevance

12

/xsrc/external/mit/xorg-server.old/dist/hw/xwin/
H A Dwinpixmap.c59 int iWidth, int iHeight,
75 iWidth, iHeight, iDepth, usage_hint,
76 PixmapBytePad (iWidth, iDepth));
89 pPixmap->drawable.width = iWidth;
103 pPixmapPriv->dwScanlineBytes = PixmapBytePad (iWidth, iDepth);
106 if (iWidth == 0 || iHeight == 0)
113 pPixmapPriv->hBitmap = winCreateDIBNativeGDI (iWidth, iHeight, iDepth,
120 pPixmapPriv->hBitmap, iWidth, iHeight, iDepth, pScreen);
183 int iWidth, int iHeight,
58 winCreatePixmapNativeGDI(ScreenPtr pScreen,int iWidth,int iHeight,int iDepth,unsigned usage_hint) argument
182 winModifyPixmapHeaderNativeGDI(PixmapPtr pPixmap,int iWidth,int iHeight,int iDepth,int iBitsPerPixel,int devKind,pointer pPixData) argument
H A Dwincreatewnd.c63 int iWidth = pScreenInfo->dwWidth; local in function:winCreateBoundingWindowFullScreen
112 iWidth, /* Right edge */
154 int iWidth = pScreenInfo->dwUserWidth; local in function:winCreateBoundingWindowWindowed
283 iWidth += 2 * GetSystemMetrics (SM_CXSIZEFRAME);
293 iWidth += 2 * GetSystemMetrics (SM_CXFIXEDFRAME);
309 iWidth = GetSystemMetrics (SM_CXVIRTUALSCREEN);
325 if (iWidth > (rcWorkArea.right - rcWorkArea.left))
326 iWidth = rcWorkArea.right - rcWorkArea.left;
335 iWidth, iHeight);
361 iWidth, /* Righ
522 int iWidth, iHeight; local in function:winGetWorkArea
[all...]
H A Dwinnativegdi.c355 winCreateDIBNativeGDI (int iWidth, int iHeight, int iDepth, argument
363 if (iWidth == 0
368 iWidth, iHeight, iDepth);
384 pbmih->biWidth = iWidth;
H A Dwinwindow.h100 int iWidth, iHeight; member in struct:_winWMMessageRec
H A Dwinprocarg.c273 int iWidth, iHeight, iX, iY; local in function:ddxProcessArgument
344 (int *) &iWidth,
350 g_ScreenInfo[nScreenNum].dwWidth = iWidth;
352 g_ScreenInfo[nScreenNum].dwUserWidth = iWidth;
423 (int *) &iWidth)
430 g_ScreenInfo[nScreenNum].dwWidth = iWidth;
432 g_ScreenInfo[nScreenNum].dwUserWidth = iWidth;
H A Dwinmultiwindowwindow.c160 int iX, iY, iWidth, iHeight; local in function:winPositionWindowMultiWindow
206 iWidth = pWin->drawable.width;
210 SetRect (&rcNew, iX, iY, iX + iWidth, iY + iHeight);
486 int iWidth; local in function:winCreateWindowsWindow
506 iWidth = pWin->drawable.width;
546 iWidth, /* Right edge */
H A Dwinwndproc.c331 int iWidth, iHeight; local in function:winWindowProc
379 iWidth = rcWindow.right - rcWindow.left;
383 iWidth -= 2 * GetSystemMetrics (SM_CXSIZEFRAME);
394 if (iWidth < s_pScreenInfo->dwWidth
398 iWidth -= GetSystemMetrics (SM_CXVSCROLL);
407 si.nPage = iWidth;
H A Dwinwin32rootlesswndproc.c210 int iWidth, iHeight, iTopBorder; local in function:ValidateSizing
236 iWidth = rect->right - rect->left;
245 iWidth -= 2 * GetSystemMetrics(SM_CXSIZEFRAME);
249 ConstrainSize (sizeHints, &iWidth, &iHeight);
252 iWidth += 2 * GetSystemMetrics(SM_CXSIZEFRAME);
262 rect->right = rect->left + iWidth;
265 rect->left = rect->right - iWidth;
432 wmMsg.iWidth = pRLWinPriv->pFrame->width;
955 wmMsg.iWidth = pRLWinPriv->pFrame->width;
H A Dwinwindow.c483 int iX, iY, iWidth, iHeight, iBorder; local in function:winAddRgn
501 iWidth = pWin->drawable.width + iBorder * 2;
504 hRgnWin = CreateRectRgn (0, 0, iWidth, iHeight);
510 iX, iY, iX + iWidth, iY + iHeight);
H A Dwinmultiwindowwndproc.c202 int iWidth, iHeight; local in function:ValidateSizing
223 iWidth = rect->right - rect->left;
231 iWidth -= iBorderWidthX;
235 ConstrainSize (sizeHints, &iWidth, &iHeight);
238 iWidth += iBorderWidthX;
248 rect->right = rect->left + iWidth;
251 rect->left = rect->right - iWidth;
355 wmMsg.iWidth = pDraw->width;
/xsrc/external/mit/xorg-server/dist/hw/xwin/
H A Dwincreatewnd.c58 int iWidth = pScreenInfo->dwWidth; local in function:winCreateBoundingWindowFullScreen
100 iWidth, /* Right edge */
128 int iWidth = pScreenInfo->dwUserWidth; local in function:winCreateBoundingWindowWindowed
235 iWidth += 2 * GetSystemMetrics(SM_CXSIZEFRAME);
245 iWidth += 2 * GetSystemMetrics(SM_CXFIXEDFRAME);
259 iWidth = GetSystemMetrics(SM_CXVIRTUALSCREEN);
269 if (iWidth > (rcWorkArea.right - rcWorkArea.left))
270 iWidth = rcWorkArea.right - rcWorkArea.left;
278 "height: %d\n", iWidth, iHeight);
299 iWidth, /* Righ
435 int iWidth, iHeight; local in function:winGetWorkArea
[all...]
H A Dwinwindow.c242 int iX, iY, iWidth, iHeight, iBorder; local in function:winAddRgn
259 iWidth = pWin->drawable.width + iBorder * 2;
262 hRgnWin = CreateRectRgn(0, 0, iWidth, iHeight);
267 iX, iY, iX + iWidth, iY + iHeight);
H A Dwinwindow.h93 int iWidth, iHeight; member in struct:_winWMMessageRec
H A Dwinprocarg.c285 int iWidth, iHeight, iX, iY; local in function:ddxProcessArgument
349 (int *) &iWidth, (int *) &iHeight)) {
354 g_ScreenInfo[nScreenNum].dwWidth = iWidth;
356 g_ScreenInfo[nScreenNum].dwUserWidth = iWidth;
415 else if (i + 3 < argc && 1 == sscanf(argv[i + 2], "%d", (int *) &iWidth)
421 g_ScreenInfo[nScreenNum].dwWidth = iWidth;
423 g_ScreenInfo[nScreenNum].dwUserWidth = iWidth;
H A Dwinmultiwindowwindow.c170 int iX, iY, iWidth, iHeight; local in function:winPositionWindowMultiWindow
216 iWidth = pWin->drawable.width;
220 SetRect(&rcNew, iX, iY, iX + iWidth, iY + iHeight);
484 int iWidth; local in function:winCreateWindowsWindow
503 iWidth = pWin->drawable.width;
522 winDebug("winCreateWindowsWindow - %dx%d @ %dx%d\n", iWidth, iHeight, iX,
559 rc.right = rc.left + iWidth;
566 iWidth = rc.right - rc.left;
568 winDebug("winCreateWindowsWindow - %dx%d @ %dx%d\n", iWidth, iHeight, iX,
578 iWidth, /* Righ
[all...]
H A Dwinwndproc.c300 int iWidth, iHeight; local in function:winWindowProc
342 iWidth = rcWindow.right - rcWindow.left;
346 iWidth -= 2 * GetSystemMetrics(SM_CXSIZEFRAME);
357 if (iWidth < s_pScreenInfo->dwWidth
360 iWidth -= GetSystemMetrics(SM_CXVSCROLL);
369 si.nPage = iWidth;
H A Dwinmultiwindowwndproc.c201 int iWidth, iHeight; local in function:ValidateSizing
223 iWidth = rect->right - rect->left;
233 iWidth -= iBorderWidthX;
237 ConstrainSize(sizeHints, &iWidth, &iHeight);
240 iWidth += iBorderWidthX;
250 rect->right = rect->left + iWidth;
253 rect->left = rect->right - iWidth;
477 wmMsg.iWidth = pDraw->width;
/xsrc/external/mit/mesa-demos/dist/src/redbook/
H A Dtexture3d.c55 #define iWidth 16 macro
59 static GLubyte image[iDepth][iHeight][iWidth][3];
97 glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB, iWidth, iHeight,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/wgl/
H A Dstw_ext_pbuffer.c72 int iWidth,
99 if (iWidth <= 0 || iHeight <= 0) {
148 if (iWidth > stw_dev->max_2d_length) {
150 iWidth = stw_dev->max_2d_length;
199 rect.right = rect.left + iWidth;
238 assert(rect.right - rect.left == iWidth);
70 wglCreatePbufferARB(HDC hCurrentDC,int iPixelFormat,int iWidth,int iHeight,const int * piAttribList) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c72 int iWidth,
98 if (iWidth <= 0 || iHeight <= 0) {
147 if (iWidth > stw_dev->max_2d_length) {
149 iWidth = stw_dev->max_2d_length;
198 rect.right = rect.left + iWidth;
237 assert(rect.right - rect.left == iWidth);
70 wglCreatePbufferARB(HDC hCurrentDC,int iPixelFormat,int iWidth,int iHeight,const int * piAttribList) argument
/xsrc/external/mit/xorg-server/dist/hw/xwin/glx/
H A Dwgl_ext_api.h67 int iWidth,
/xsrc/external/mit/MesaLib.old/dist/include/GL/
H A Dwglext.h156 typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
162 HPBUFFERARB WINAPI wglCreatePbufferARB (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
425 typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
431 HPBUFFEREXT WINAPI wglCreatePbufferEXT (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
/xsrc/external/mit/MesaLib/dist/include/GL/
H A Dwglext.h156 typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
162 HPBUFFERARB WINAPI wglCreatePbufferARB (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
430 typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
436 HPBUFFEREXT WINAPI wglCreatePbufferEXT (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
/xsrc/external/mit/xorg-server.old/dist/hw/xwin/glx/
H A Dwglext.h507 extern HPBUFFERARB WINAPI wglCreatePbufferARB (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
513 typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
591 extern HPBUFFEREXT WINAPI wglCreatePbufferEXT (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
597 typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
H A Dwglext.spec179 CreatePbufferARB(hDC, iPixelFormat, iWidth, iHeight, piAttribList)
183 param iWidth int in value
355 CreatePbufferEXT(hDC, iPixelFormat, iWidth, iHeight, piAttribList)
359 param iWidth int in value

Completed in 25 milliseconds

12