mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-18 03:37:27 +00:00
remove unused head file Tracked-On: #3349 Signed-off-by: Liu Xinyun <xinyun.liu@intel.com> Reviewed-by: Yonghua Huang <yonghua.huang@intel.com>
20 lines
256 B
C
20 lines
256 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "gc.h"
|
|
|
|
struct gfx_ctx {
|
|
struct gfx_ctx_image *gc_image;
|
|
int raw;
|
|
};
|
|
|
|
struct gfx_ctx_image *
|
|
gc_get_image(struct gfx_ctx *gc)
|
|
{
|
|
if (gc == NULL)
|
|
return NULL;
|
|
|
|
return gc->gc_image;
|
|
}
|