Set bits to 1. Also, add some explanation for basic-shaders-only

This commit is contained in:
rdb 2009-04-04 15:48:25 +00:00
parent 7c9592f520
commit 1348af976a

View File

@ -27,9 +27,11 @@ framebuffer-hardware #t
framebuffer-software #f
# These set the minimum requirements for the framebuffer.
# A value of 1 means: get as many bits as possible,
# consistent with the other framebuffer requirements.
depth-bits 16
color-bits 16
depth-bits 1
color-bits 1
alpha-bits 0
stencil-bits 0
multisamples 0
@ -73,14 +75,19 @@ use-movietexture #t
# The new version of panda supports hardware vertex animation, but it's not quite ready
hardware-animated-vertices 0
hardware-animated-vertices #f
# Enable the model-cache, but only for models, not textures.
model-cache-dir $THIS_PRC_DIR/../modelcache
model-cache-textures #f
# Limit the use of advanced shader profiles.
# Currently, advanced profiles are not reliable under Cg.
# This option specifies the default profiles for Cg shaders.
# Setting it to #t makes them arbvp1 and arbfp1, since these
# seem to be most reliable. Setting it to #f makes Panda use
# the latest profile available.
# This default profile can be overriden by any profile setting
# from within the application.
basic-shaders-only #t