92 lines
1.6 KiB
C
92 lines
1.6 KiB
C
/*
|
|
* Copyright (C) 2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include "gc.h"
|
|
|
|
struct gfx_ctx *
|
|
gc_init(int width, int height, void *fbaddr)
|
|
{
|
|
struct gfx_ctx *gc;
|
|
struct gfx_ctx_image *gc_image;
|
|
|
|
gc = calloc(1, sizeof(struct gfx_ctx));
|
|
assert(gc != NULL);
|
|
gc_image = calloc(1, sizeof(struct gfx_ctx_image));
|
|
assert(gc_image != NULL);
|
|
|
|
gc_image->width = width;
|
|
gc_image->height = height;
|
|
if (fbaddr) {
|
|
gc_image->data = fbaddr;
|
|
gc->raw = 1;
|
|
} else {
|
|
gc_image->data = calloc(width * height, sizeof(uint32_t));
|
|
gc->raw = 0;
|
|
}
|
|
gc->gc_image = gc_image;
|
|
|
|
return gc;
|
|
}
|
|
|
|
void
|
|
gc_deinit(struct gfx_ctx *gc)
|
|
{
|
|
if (!gc)
|
|
return;
|
|
|
|
if (gc->gc_image) {
|
|
if (!gc->raw && gc->gc_image->data) {
|
|
free(gc->gc_image->data);
|
|
gc->gc_image->data = NULL;
|
|
}
|
|
free(gc->gc_image);
|
|
gc->gc_image = NULL;
|
|
}
|
|
|
|
free(gc);
|
|
gc = NULL;
|
|
}
|
|
|
|
void
|
|
gc_set_fbaddr(struct gfx_ctx *gc, void *fbaddr)
|
|
{
|
|
gc->raw = 1;
|
|
if (gc->gc_image->data && gc->gc_image->data != fbaddr)
|
|
free(gc->gc_image->data);
|
|
gc->gc_image->data = fbaddr;
|
|
}
|
|
struct gfx_ctx_image *
|
|
gc_get_image(struct gfx_ctx *gc)
|
|
{
|
|
if (gc == NULL)
|
|
return NULL;
|
|
|
|
return gc->gc_image;
|
|
}
|
|
|
|
void
|
|
gc_resize(struct gfx_ctx *gc, int width, int height)
|
|
{
|
|
struct gfx_ctx_image *gc_image;
|
|
|
|
gc_image = gc->gc_image;
|
|
gc_image->width = width;
|
|
gc_image->height = height;
|
|
if (!gc->raw) {
|
|
gc_image->data = realloc(gc_image->data,
|
|
width * height * sizeof(uint32_t));
|
|
if (gc_image->data != NULL)
|
|
memset(gc_image->data, 0, width * height *
|
|
sizeof(uint32_t));
|
|
}
|
|
}
|