diff options
author | 2010-01-06 11:57:52 -0800 | |
---|---|---|
committer | 2010-01-06 12:01:51 -0800 | |
commit | a09a6e145b778861f7abee86ce17e59507ed221e (patch) | |
tree | 15221ba7d657a5a75ec3f6ae2804c1b79a07a969 /libs/rs/rsContext.cpp | |
parent | 432bff01ec67533dbbb6ed27cb190c99e83ea226 (diff) |
More complete support for named attribs. Adds user typed attribs as available to programVertex. Non user attribs are not treated like user for GL2 for simplicity.
Diffstat (limited to 'libs/rs/rsContext.cpp')
-rw-r--r-- | libs/rs/rsContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp index 181902bf2518..261b827169cb 100644 --- a/libs/rs/rsContext.cpp +++ b/libs/rs/rsContext.cpp @@ -274,8 +274,8 @@ void * Context::threadProc(void *vrsc) rsc->props.mLogTimes = getProp("debug.rs.profile"); rsc->props.mLogScripts = getProp("debug.rs.script"); - rsc->props.mLogObjects = getProp("debug.rs.objects"); - rsc->props.mLogShaders = getProp("debug.rs.shaders"); + rsc->props.mLogObjects = getProp("debug.rs.object"); + rsc->props.mLogShaders = getProp("debug.rs.shader"); ScriptTLSStruct *tlsStruct = new ScriptTLSStruct; if (!tlsStruct) { |