Home | History | Annotate | Download | only in Renderscript

Lines Matching refs:Compiler

165     // Haven't run the compiler ever.
203 // compiler therefore it should be extracted before compilation.
212 // This is required since RS compiler may need information in the info file
254 // Setup the config to the compiler.
259 ALOGE("Failed to setup config for RS compiler to compile %s!", pOutputPath);
265 // Compiler need to re-config if it's haven't run the config() yet or the
268 Compiler::ErrorCode err = mCompiler.config(*mConfig);
269 if (err != Compiler::kSuccess) {
270 ALOGE("Failed to config the RS compiler for %s! (%s)",pOutputPath,
271 Compiler::GetErrorString(err));
279 // Run the compiler.
281 Compiler::ErrorCode compile_result = mCompiler.compile(pScript, *output_file);
282 if (compile_result != Compiler::kSuccess) {
284 Compiler::GetErrorString(compile_result));