From 16da7959a072da0d5fdc3a774fa01fb4d811d46f Mon Sep 17 00:00:00 2001 From: Mathias Agopian <mathias@google.com> Date: Wed, 20 May 2009 17:58:36 -0700 Subject: make sure to fail to software when the h/w renderer cannot be initialized --- opengl/libs/EGL/gpu.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'opengl') diff --git a/opengl/libs/EGL/gpu.cpp b/opengl/libs/EGL/gpu.cpp index f9dc5f1..4c902c8 100644 --- a/opengl/libs/EGL/gpu.cpp +++ b/opengl/libs/EGL/gpu.cpp @@ -118,6 +118,11 @@ request_gpu_t* gpu_acquire(void* user) return 0; } + if (info.regs == 0) { + LOGD("requestGPU() failed"); + return 0; + } + bool failed = false; request_gpu_t* gpu = &gRegions; memset(gpu, 0, sizeof(*gpu)); -- cgit v1.1