From 9c0788abebfddf829526cffc14159f54cb4143ec Mon Sep 17 00:00:00 2001 From: cxgeorge <> Date: Wed, 13 Mar 2002 03:30:24 +0000 Subject: [PATCH] change deflt decal to blend --- panda/src/dxgsg/config_dxgsg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/dxgsg/config_dxgsg.cxx b/panda/src/dxgsg/config_dxgsg.cxx index 71fc14637d..93090a82eb 100644 --- a/panda/src/dxgsg/config_dxgsg.cxx +++ b/panda/src/dxgsg/config_dxgsg.cxx @@ -92,7 +92,7 @@ bool dx_force_anisotropic_filtering = config_dxgsg.GetBool("dx-force-anisotropic const bool link_tristrips = config_dxgsg.GetBool("link-tristrips", false); // note: offset currently disabled since it wasnt working properly -DXDecalType dx_decal_type = GDT_offset; +DXDecalType dx_decal_type = GDT_blend; static DXDecalType parse_decal_type(const string &type) { @@ -104,7 +104,7 @@ parse_decal_type(const string &type) { return GDT_offset; } dxgsg_cat.error() << "Invalid dx-decal-type: " << type << "\n"; - return GDT_offset; + return GDT_blend; } ConfigureFn(config_dxgsg) {