🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Advertisement

Latest mipmap Activity

@JoeJ I appreciate your answer! I already know how to use mipmaps in DirectX12.

6,178 views
Advertisement
 Texture bleed when using tiling + mipmaps

@JoeJ Thanks, that sent me on quite a long derivative trip but finally I fond the solution. In terms of the approach mentioned in the kronos forum link, it looks like this:

uv = beg + size * fract(uv * tile);

vec2 smooth_uv = size * tile * vuv;
vec4 duv = vec4(dFdx(smooth_uv), dFdy(smooth_uv));

ve…
5,928 views
Advertisement
Advertisement