how to StretchRect in managed pool?

Started by
0 comments, last by LeGreg 17 years, 10 months ago
In DirectX, I can StretchRect between D3DPOOL_DEFAULT, but how can I stretch between managed pool? or from managed pool to default pool? I want to upload a texture into a managed pool, and scale it smaller into another texture, either managed or in video memory. I tried GetDC() of two managed pool textures then StretchBlt(hdcSource, hdcDest), the texture is scaled, but somehow lots of color noise comes out, especially at the edge of object, though the formats of textures are the same. And if I use BitBlt it's correct.
Advertisement
Quote:Original post by raytracer03
In DirectX, I can StretchRect between D3DPOOL_DEFAULT,
but how can I stretch between managed pool?
or from managed pool to default pool?


you can't stretchrect to a managed pool,

you can stretchrect from a managed pool to default pool WITH the flag RENDERTARGET
and with a supported format.

LeGreg

This topic is closed to new replies.

Advertisement