如何从 d3d10 纹理 2d 获取 MipMap 表面列表
在 D3D10 中,我可以使用一种方法从具有一个 mipmap lvl 的 Texture2D 中获取单个表面。
{
IDXGISurface* surface;
texture2D->QueryInterface(__uuidof(IDXGISurface), (LPVOID*)&surface);
}
但这不适用于具有多个 mipmap 的纹理,那么我怎样才能从 mipmap 链中取回所有表面呢?
In D3D10 there is a method I can use for getting back a single surface from a Texture2D with one mipmap lvl.
{
IDXGISurface* surface;
texture2D->QueryInterface(__uuidof(IDXGISurface), (LPVOID*)&surface);
}
But this will not work with a texture that has more then one mipmap, So how can I get back all the surfaces from the mipmap chain ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。如果您想获取特定的像素数据,您将需要使用地图(如果可以的话)。如果您需要 IDXGISurface,那么您不必使用 mipmapping。
You can't. If you want to get at the specific pixel data you will need to use map (if you can). If you need an IDXGISurface then you'll simply have to not use mipmapping.