From a33161b02020d34baf210c2bd89201564d6d99f6 Mon Sep 17 00:00:00 2001 From: Ethan Yonker Date: Thu, 6 Nov 2014 15:11:20 -0600 Subject: Revert to old libminui and fix up We will wait for CAF to give us a new libminui that supports qualcomm overlay before moving up to the new format if possible. Attempt to fix up old libminui to work with new libpng. Change-Id: I494b7287b347f4730aa8f9d27d4cc17b6e93919a --- minui/graphics.h | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 minui/graphics.h (limited to 'minui/graphics.h') diff --git a/minui/graphics.h b/minui/graphics.h deleted file mode 100644 index 993e986ee..000000000 --- a/minui/graphics.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (C) 2014 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _GRAPHICS_H_ -#define _GRAPHICS_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include "minui.h" - -typedef struct minui_backend { - // Initializes the backend and returns a gr_surface to draw into. - gr_surface (*init)(struct minui_backend*); - - // Causes the current drawing surface (returned by the most recent - // call to flip() or init()) to be displayed, and returns a new - // drawing surface. - gr_surface (*flip)(struct minui_backend*); - - // Blank (or unblank) the screen. - void (*blank)(struct minui_backend*, bool); - - // Device cleanup when drawing is done. - void (*exit)(struct minui_backend*); -} minui_backend; - -minui_backend* open_fbdev(); -minui_backend* open_adf(); - -#ifdef __cplusplus -} -#endif - -#endif -- cgit v1.2.3