Need help with DirectDraw Clipper ! From: Jos Blos <kyle@bbsi.net> Date: Mon, 09 Jun 1997 00:00:00 +0000 Here's my problem : I use a clipper with my program that I setup correctly as shown in the DirectX SDK. I create the clipper. I set the handle of my windows to the clipper and then I set the clipper to the surface. And responding to the WM_PAINT message I use this code: lpDDSurface->GetDC(&hdc); LineTo(hdc, x, y); lpDDSurface->ReleaseDC(hdc); Simple enough. The LineTo function should write only in the windows to the coordinate x, y. But that doesn't happen. Instead the LineTo function react as if their was no clipper and write to the whole screen, not just the windows. Why ? If someone can help me please e-mail me at kyle@bbsi.net. Any help would be greatly appreciated. Up