I'm currently using XNA, the problem is that the textures(.png) are using to much space, how do I "DXT1" Compress them. I have tried to find a solution but I was unable to find anything.
How to DXT1 compress textures?
395 Views Asked by Almir Omerović At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in XNA
- Is my UnloadContent method acceptable?
- Remove items from screen on rectangle click
- OutOfRangeException error when the array has items in it?
- How do I scale the graphics of a game?
- How do I apply multiple matrices in spriteBatch.Draw()?
- C# XNA Collision Detection with list of objects
- Playing a wav file from a MemoryStream windows phone 8.1
- Error loading textures in monogame as non content files
- Shading in XNA Game Studio
- Creating an update method with custom rate processing in c++
- Path to Windows 8/10 app from win 7/xna/monogame/xamarin
- game works perfectly in standard screensize but not in fullscreen
- Score not changing when collision occurs
- Unhandled exception of type
- Simple binary reader-writer code not working
Related Questions in COMPRESSION
- How to use deflate/inflate SetDictionary with raw deflate/inflate?
- C# How to get file/ copy file from a bzip2 (.bz2) file without extracting the file
- How can I compress four floats into a string?
- Create ZIP File Then Send to Client
- compress json data from rest node.js use express compression
- Advanced Data Compression
- Tools to minify CDD and JS files
- How to use multiple threads for zlib compression (same input source)
- Data compression in RDBMS like Oracle, MySQL etc
- Haskell - Lempel-Ziv 78 Compression - very slow, why?
- Python: how to create tar file and compress it on the fly with external module, using different compression methods not available in tarfile module?
- Why isn't lossless compression automatic on computers?
- PHP Image Compression Before Upload
- Compression of char size integer by removing leading zeroes
- BMP Image Compression and Decompression in java
Related Questions in TEXTURES
- Can linear filtering be used for an FBO blit of an MSAA texture to non-MSAA texture?
- Texture mapping consuming physical memory
- Quality not proper while rendering it via threejs r71
- SDL2_image rendering not working properly
- Cocos2D 2.x: Running CCWave action makes sprite disappear
- Creating a Texture2DArray and populate it with solid values
- Projecting a texture from plane to object with Unity
- Textured cube renders blank in DirectX
- Programmatically generate texture for WebGL in JavaScript
- Unable to render a texture on a quad
- OpenGl with C++ - Textures
- Random Line Appearing on Moving Texture Node
- Load multiple OBJ-files together with multple textures
- LibGDX "GwtApplication: exception: Couldn't load image 'a.jpg'
- Android OpenGL es 2.0 Can not reload textures on object.
Related Questions in CONTENT-PIPELINE
- MonoGame Pipeline XML Load error 'Element' is an invalid XmlNodeType
- Monogame Content Pipeline has stopped working
- Loading Texture from subclass
- Xna Content Pipeline and Textures
- Serialize Texture2D programmatically in XNA
- Getting Monogame content pipeline to work with Visual studio 2013 in windows 8
- Organize Content Pipeline in Visual Studio
- Which types are supported by XNA's Automatic XNB Serialization?
- Getting the content type from ContentManager in XNA
- XNA Content Pipeline Load .wav Files At Runtime
- Confusion about model's vertexbuffer and indexbuffer
- Error: Cannot find 'freetype6.dll'
- How to DXT1 compress textures?
- System.InvalidOperationException in WP 8 Game (MonoGame )
- MonoGame content builder
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If I get what you mean.
The XNA pipeline supports compressing Texture objects, but only if they are sized as a power of 2. (32, 64, 128, 256...)
To do this, go to your Content Project, and for each image adjusted the properties under
Content Processor. SetResize to Power of Twoto be True, andTexture Formto be DxtCompressed.