I am using the D3DXSPRITE method to draw my map tiles to the screen, i just added a zoom function which zooms in when you hold the up arrow, but noticed you can now see gaps between the tiles, here's some screen shots

normal size (32x32) per tile

enter image description here

zoomed in (you can see white gaps between the tiles)

enter image description here

zoomed out (even worst!)

enter image description here

Here's the code snipplet which I translate and scale the world with.

D3DXMATRIX matScale, matPos;

D3DXMatrixScaling(&matScale, zoom_, zoom_, 0.0f);
D3DXMatrixTranslation(&matPos, xpos_, ypos_, 0.0f);

device_->SetTransform(D3DTS_WORLD, &(matPos * matScale));

And this is my drawing of the map, (tiles are in a vector of a vector of tiles.. and I haven't done culling yet)

LayerInfo *p_linfo = NULL;
  RECT rect = {0};
  D3DXVECTOR3 pos;
  pos.x = 0.0f;
  pos.y = 0.0f;
  pos.z = 0.0f;

  for (short y = 0; 
    y < BottomTile(); ++y)
  {
    for (short x = 0; 
          x < RightTile(); ++x)
    {
      for (int i = 0; i < TILE_LAYER_COUNT; ++i)
      {
        p_linfo = tile_grid_[y][x].Layer(i);

        if (p_linfo->Visible())
        {
          p_linfo->GetTextureRect(&rect);

          sprite_batch->Draw(
            p_engine_->GetTexture(p_linfo->texture_id), 
            &rect, NULL, &pos, 0xFFFFFFFF);
        }
      }
      pos.x += p_engine_->TileWidth();
    }
    pos.x = 0;
    pos.y += p_engine_->TileHeight();
  }
link|improve this question

Does the lines change color if you change the background color? That might be intresting to know to actually rule out that there isn't someting going on with your textures or filtering. – John Leidegren May 28 '11 at 16:35
1  
You really need to use shaders and ID3DXEffect, not fixed-function. – DeadMG May 28 '11 at 16:44
the lines don't change color, just look white, i tried clear as red, blue, black, all look the same. – Kaije May 28 '11 at 16:50
i'll have a look at d3dxeffect – Kaije May 28 '11 at 16:51
feedback

4 Answers

up vote 0 down vote accepted

Welcome to the world of floating-point. Those gaps exist due to imperfections using floating-point numbers.

You might be able to improve the situation by being really careful when doing your floating-point math but those seams will be there unless you make one whole mesh out of your terrain.

It's the rasterizer that given the view and projection matrix as well as the vertex positions is slightly off. You maybe able to improve on that but I don't know how successful you'll be.

Instead of drawing different quads you can index only the visible vertexes that make up your terrain and instead use texture tiling techniques to paint different stuff on there. I believe that won't get you the ugly seam because in that case, there technically isn't one.

link|improve this answer
This isn't FP-imperfection, it's much too regular. – DeadMG May 28 '11 at 16:28
@DeadMG Hmm, No. I'll bet you it's a rounding problem going on in the rasterizer. Given how things are set up. You can minimize the visiblity of such issues but they'll always be there. – John Leidegren May 28 '11 at 16:34
Rounding problems would not produce an effect regularly, as floating-point representation is not spread equally. The artifacts would be either more or less present towards the lower range. – DeadMG May 28 '11 at 16:51
Okay, but what if the view and/or projection matrices were setup unfavourably? – John Leidegren May 28 '11 at 17:04
feedback

Your texture indices are wrong. 0,0,32,32 is not the correct value- it should be 0,0,31,31. A zero-based index into your texture atlas of 256 pixels would yield values of 0 to 255, not 0 to 256, and a 32x32 texture should yield 0,0,31,31. In this case, the colour of the incorrect pixels depends on the colour of the next texture along the right and the bottom.

link|improve this answer
The seams are the colors of the texture to the right and bottom! but i tried returning a rect of 0,0,31,31 and now i have a 1 pixel gap. How come i can only see the seams when i'm zoomed in or out then? and if i screenshot and check in paint, each tile is now 31 pixels wide and missing a column of pixels – Kaije May 28 '11 at 17:07
@Kaije: Could well be that your layout code is off for positioning them on the screen. – DeadMG May 28 '11 at 17:18
Each tile is positioned 32 pixels apart in the loop, and with 0,0,31,31, each tile has a 1 pixel gap on every side, when i screenshot and zoom in i count the pixels of 1 tile, and its 31x31 pixels with some of the texture missing – Kaije May 28 '11 at 17:24
I think it needs 0-32 because usually when your looping through something, you do like (i=0; i < 32; i++), it will go through 0-31 – Kaije May 28 '11 at 17:28
@Kaije: You should try loading the texture individually and passing NULL for the rect, and see if that solves the problem at ahnd – DeadMG May 28 '11 at 19:57
show 2 more comments
feedback

That's the problem of magnification and minification. Your textures should have invisible border populated with part of adjacent texture. Then magnification and minification filters will use that border to calculate color of edge pixels rather than default (white) color.

I think so.

link|improve this answer
I think this is the real answer. Texture interpolation accesses several texels. On a border some texels don't have values this leads to these artifacts. Mipmapping exacerbates those problems. However your texture looks so simple, maybe you can set the mode to repeat. – whoplisp Jul 3 '11 at 18:57
feedback

In OpenGL your textures should have size multiples of powers of 2.

Otherwise you'll get scaling in and out to adapt to powers of 2 that will produce such artifacts.

EDIT:

Although you are using DirectX, this is possibly also affecting your program, but since you don't give the relevant code (it seems to me), it is just an hypothesis.

link|improve this answer
This is DirectX... The same constraint apply there but you can't have textures that arent multiples of two and the texture is actually 32 by 32 as stated in the question. – John Leidegren May 28 '11 at 16:36
my texture is 256, contains 8x8 32x32 pixel textures, my GetTextureRect function is recieving a rect of 0, 0, 32, 32. so its to the power of 2 – Kaije May 28 '11 at 16:37
That should be 0,0,31,31. A zero-based index into the texture would be 0 to 255, not 0 to 256. – DeadMG May 28 '11 at 16:54
i just tried 0, 0, 31, 31 rect, and now i have a 1 pixel gap between all my tiles, whiuch shows the background through – Kaije May 28 '11 at 17:01
Thanks, John, now I know that also DirectX has the same constraint. Let's hope then that the problem is related to this, notwithstanding all. – sergio May 28 '11 at 17:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.