Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c378dab0 authored by Jason Sams's avatar Jason Sams
Browse files

Remove excess logging.

Change-Id: Ib4af6428c5fd87c3891f41eca6ca43d84f0edc97
parent 1de0b871
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -328,7 +328,7 @@ RsProgramFragment rsi_ProgramFragmentCreate(Context *rsc,
{
{
    ProgramFragment *pf = new ProgramFragment(rsc, params, paramLength);
    ProgramFragment *pf = new ProgramFragment(rsc, params, paramLength);
    pf->incUserRef();
    pf->incUserRef();
    LOGE("rsi_ProgramFragmentCreate %p", pf);
    //LOGE("rsi_ProgramFragmentCreate %p", pf);
    return pf;
    return pf;
}
}


@@ -338,7 +338,7 @@ RsProgramFragment rsi_ProgramFragmentCreate2(Context *rsc, const char * shaderTe
{
{
    ProgramFragment *pf = new ProgramFragment(rsc, shaderText, shaderLength, params, paramLength);
    ProgramFragment *pf = new ProgramFragment(rsc, shaderText, shaderLength, params, paramLength);
    pf->incUserRef();
    pf->incUserRef();
    LOGE("rsi_ProgramFragmentCreate2 %p", pf);
    //LOGE("rsi_ProgramFragmentCreate2 %p", pf);
    return pf;
    return pf;
}
}


+0 −2
Original line number Original line Diff line number Diff line
@@ -167,9 +167,7 @@ void ScriptCState::runCompiler(Context *rsc, ScriptC *s)
    s->mBccScript = bccCreateScript();
    s->mBccScript = bccCreateScript();
    bccScriptBitcode(s->mBccScript, s->mEnviroment.mScriptText, s->mEnviroment.mScriptTextLength);
    bccScriptBitcode(s->mBccScript, s->mEnviroment.mScriptText, s->mEnviroment.mScriptTextLength);
    bccRegisterSymbolCallback(s->mBccScript, symbolLookup, NULL);
    bccRegisterSymbolCallback(s->mBccScript, symbolLookup, NULL);
    LOGE("ScriptCState::runCompiler 3");
    bccCompileScript(s->mBccScript);
    bccCompileScript(s->mBccScript);
    LOGE("ScriptCState::runCompiler 4");
    bccGetScriptLabel(s->mBccScript, "root", (BCCvoid**) &s->mProgram.mRoot);
    bccGetScriptLabel(s->mBccScript, "root", (BCCvoid**) &s->mProgram.mRoot);
    bccGetScriptLabel(s->mBccScript, "init", (BCCvoid**) &s->mProgram.mInit);
    bccGetScriptLabel(s->mBccScript, "init", (BCCvoid**) &s->mProgram.mInit);
    LOGE("root %p,  init %p", s->mProgram.mRoot, s->mProgram.mInit);
    LOGE("root %p,  init %p", s->mProgram.mRoot, s->mProgram.mInit);