This commit is contained in:
ramiro%netscape.com 1999-07-06 23:32:20 +00:00
Родитель 58aa59e827
Коммит 6e0b142f15
1 изменённых файлов: 16 добавлений и 2 удалений

Просмотреть файл

@ -211,8 +211,22 @@ nsresult nsRenderingContextXlib::CommonInit(void)
unsigned int width, height, border, depth;
Window root_win;
XGetGeometry(mDisplay, mRenderingSurface->GetDrawable(), &root_win,
&x, &y, &width, &height, &border, &depth);
Drawable drawable = mRenderingSurface->GetDrawable();
printf("XGetGeometry(display=%p,drawable=%p)\n",
mDisplay,
drawable);
XGetGeometry(mDisplay,
drawable,
&root_win,
&x,
&y,
&width,
&height,
&border,
&depth);
mClipRegion = new nsRegionXlib();
mClipRegion->Init();
mClipRegion->SetTo(0, 0, width, height);