sharpdx / SharpDX-Samples

Official repository for all SharpDX Samples
348 stars 221 forks source link

about TiledResources #17

Closed PedroAlvesq closed 10 years ago

PedroAlvesq commented 10 years ago

the example of TiledResources is to create a terrain in 3d

ArtiomCiumac commented 10 years ago

Can you explain more what do you mean? Isn't this a duplicate of #7?

PedroAlvesq commented 10 years ago

have a exemple in sharpdx sample call TiledResources what i want know if tihs example its to make a 3d terrain

ArtiomCiumac commented 10 years ago

Tiled Resource is a technology available in DirectX 11.2 to help streaming large texture data that uses just a fraction of GPU memory. You, as a developer, are free to do anything with that texture data. If you want to make a 3D terrain, you may not need to use Tiled Resources at all if you are creating it on CPU - just read terrain texture data (a heightmap?) and create the needed vertex buffers. Tiled Resources would be helpful to create highly-detailed terrain textures, similar to id Software's MegaTexture used in Rage.

PedroAlvesq commented 10 years ago

yes i want create a heightmap how i create a heightmap with not using the tiled Resources

xoofx commented 10 years ago

This issue list is concerning issues (bug...etc.) in SharpDX samples, but we don't provide any support (unless paid) for general questions about 3D programming. Use the appropriate forum (gamedev...etc.) for this kind of question.

If you don't comply to this rule, we will have to block your account on this repository.

Concerning your question, you have obviously not done any research, as this subject is pretty standard and has been treated dozens of times in many articles out there (not specifically with SharpDX, but if you understand the concept, it is straightforward to implement it with SharpDX or any other 3D framework). Otherwise buy the book "Introduction to 3D Game Programming with DirectX 11" by Luna, that is already covering this kind of subjects.

PedroAlvesq commented 10 years ago

thanks for informations