diff --git a/panda/src/gobj/texture.cxx b/panda/src/gobj/texture.cxx index 3b28eacdad..4e8a0a495b 100644 --- a/panda/src/gobj/texture.cxx +++ b/panda/src/gobj/texture.cxx @@ -948,9 +948,9 @@ read_dds(istream &in, const string &filename, bool header_only) { return false; } - if (header.pf.pf_flags & DDPF_ALPHAPIXELS) { - format = F_rgba; - } + // All of the compressed formats support alpha, even DXT1 (to some + // extent, at least). + format = F_rgba; } else { // An uncompressed texture format.