Art of War Central
View in iTunes
Please help us to raise in the ranks of podcasting and subscribe to our itunes feed using the link above.
The next MODSonair show will air LIVE on:
03/21/2010 12:03 EDT

Time remaining:
We Dontated to PixelEquity
"A total overhaul mod changes or redefines the gameplay style of the original game, while keeping it in the original game's universe or plot." 3
 
Site News   |   Aggregated News   |   Forums   |   Tutorials   |   Downloads   |   Projects   |   Weblinks
Latest Forum Threads 
CoD4 MP Mapping.. Posts: (10) Views: (127) by [IBS]MattY
CoD4 General.. Posts: (91) Views: (114) by [IBS]MattY
General Gaming.. Posts: (2) Views: (36) by Rasta
CoD4 Map + Mod R.. Posts: (32) Views: (224) by sam_fisher3000
CoDWW MP Mapping.. Posts: (4) Views: (53) by .KiLL3R.
L4D2 Mapping.. Posts: (1) Views: (7) by Eladd
CoD4 MP Mapping.. Posts: (29) Views: (479) by {UST}Hogan
General Gaming.. Posts: (1) Views: (23) by Cerebral_Assassin
CoD2 MP Mapping.. Posts: (8) Views: (78) by PanZerReBorN
CoDWW Map + Mod .. Posts: (35) Views: (321) by dundy
Back to Home Page
MODSCON 2010 L4D2 Contest
Register/Login to Add a Tutorial
Tutorials
CoD Mapping
ratings:
Awful Rating
Poor Rating
Average Rating
Good Rating
Excellent Rating
Mip Maps Explained
Versions: You must be logged in to view history.
One question that has arisen for me from dealing with DDS Files is what in the blazes is a Mipmap.
DDS Files - What is a Mip Map?

Thanks to Shoot for the work put into this article.

One question that has arisen for me from dealing with DDS Files is what in the blazes is a Mipmap.
Quote:
What Is a Mipmap?
A mipmap is a sequence of textures, each of which is a progressively lower resolution representation of the same image. The height and width of each image, or level, in the mipmap is a power of two smaller than the previous level. Mipmaps do not have to be square.

A high-resolution mipmap image is used for objects that are close to the user. Lower-resolution images are used as the object appears farther away. Mipmapping improves the quality of rendered textures at the expense of using more memory.

Microsoft® Direct3D® represents mipmaps as a chain of attached surfaces. The highest resolution texture is at the head of the chain and has the next level of the mipmap as an attachment. In turn, that level has an attachment that is the next level in the mipmap, and so o­n, down to the lowest resolution level of the mipmap.

Quote Source



Think of it as taking a picture of a sign:
  • The 1st image being close up - if you were right in front of it
  • The next at 5 feet back
  • The next at 10 feet back
  • 20 feet
  • 40 feet
  • 80 feet....you get the idea

The mip mapped DDS file has the various resolutions included in the file to make this possile. The game engine selects which resolution it needs to texture that particular item from that distance.