fix o4 issue

This commit is contained in:
cxgeorge 2002-03-11 23:39:44 +00:00
parent 6cd90b1f0a
commit 882d3e691c
2 changed files with 3 additions and 2 deletions

View File

@ -82,10 +82,11 @@ bool dx_no_dithering = config_dxgsg.GetBool("dx-no-dithering", false);
#ifdef _DEBUG #ifdef _DEBUG
float dx_global_miplevel_bias = config_dxgsg.GetFloat("dx-global-miplevel-bias", 0.0); float dx_global_miplevel_bias = config_dxgsg.GetFloat("dx-global-miplevel-bias", 0.0);
bool dx_debug_view_mipmaps = config_dxgsg.GetBool("dx-debug-view-mipmaps", false); bool dx_debug_view_mipmaps = config_dxgsg.GetBool("dx-debug-view-mipmaps", false);
bool dx_force_anisotropic_filtering = config_dxgsg.GetBool("dx-force-anisotropic-filtering", false);
//int dx_print_texstats = config_dxgsg.GetBool("dx-print-texstats", 0); //int dx_print_texstats = config_dxgsg.GetBool("dx-print-texstats", 0);
#endif #endif
bool dx_force_anisotropic_filtering = config_dxgsg.GetBool("dx-force-anisotropic-filtering", false);
// set 'retained-mode #t' and this to have prepare_geom concatenate all tristrips within a geom // set 'retained-mode #t' and this to have prepare_geom concatenate all tristrips within a geom
// together using degenerate tris // together using degenerate tris
const bool link_tristrips = config_dxgsg.GetBool("link-tristrips", false); const bool link_tristrips = config_dxgsg.GetBool("link-tristrips", false);

View File

@ -45,6 +45,7 @@ extern bool dx_mipmap_everything;
extern bool dx_show_transforms; extern bool dx_show_transforms;
extern bool dx_force_16bpptextures; extern bool dx_force_16bpptextures;
extern bool dx_no_dithering; extern bool dx_no_dithering;
extern bool dx_force_anisotropic_filtering;
#ifndef NDEBUG #ifndef NDEBUG
extern int dx_force_backface_culling; extern int dx_force_backface_culling;
@ -53,7 +54,6 @@ extern int dx_force_backface_culling;
#ifdef _DEBUG #ifdef _DEBUG
extern float dx_global_miplevel_bias; extern float dx_global_miplevel_bias;
extern bool dx_debug_view_mipmaps; extern bool dx_debug_view_mipmaps;
extern bool dx_force_anisotropic_filtering;
#endif #endif
// Ways to implement decals. // Ways to implement decals.