A rendering technique that uses more texture memory to achieve faster texture lookups by rendering far-away objects with a lower resolution version of the texture. It also reduces aliasing artifacts.
1
vote
1answer
59 views
How to disable mipmapping?
I'm making a 2D game in which I create some textures dynamically for displaying as simple 2D quads. To achieve this, I call ID3D11Device::CreateTexture2D that requires a D3D11_TEXTURE2D_DESC.
typedef ...
5
votes
1answer
100 views
Mip Maps on 2D Sprite causing black line above. Why is this?
I am new to Unity. I'm trying it out and using Futile for a code-first approach, but still importing textures using the Unity system.
The problem I'm having is that when I use mip maps to scale large ...
12
votes
4answers
1k views
How to avoid texture bleeding in a texture atlas?
In my game there is a Minecraft-like terrain made out of cubes. I generate a vertex buffer from the voxel data and use a texture atlas for looks of different blocks:
The problem is that the texture ...
3
votes
1answer
296 views
How can I prevent seams from showing up on objects using lower mipmap levels?
Disclaimer: kindly right click on the images and open them separately so that they're at full size, as there are fine details which don't show up otherwise. Thank you.
I made a simple Blender model, ...
