Home | History | Annotate | Download | only in Renderscript

Lines Matching refs:script

91   // Acquire the read lock for reading the Script object file.
218 // Associate script with its info
225 // Link RS script with Renderscript runtime.
228 ALOGE("Failed to link script '%s' with Renderscript runtime!", pScriptName);
377 // Load the bitcode and create script.
385 RSScript *script = new (std::nothrow) RSScript(*source);
386 if (script == NULL) {
387 ALOGE("Out of memory when create Script object for '%s'! (output: %s)",
393 script->setLinkRuntimeCallback(pLinkRuntimeCallback);
397 script->setCompilerVersion(wrapper.getCompilerVersion());
398 script->setOptimizationLevel(static_cast<RSScript::OptimizationLevel>(
402 // Compile the script
404 Compiler::ErrorCode status = compileScript(*script, pResName,
409 // Script is no longer used. Free it to get more memory.
410 delete script;