/* * Descent 3 * Copyright (C) 2024 Parallax Software * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /* internal header to 2dlib */ #ifndef LIB2D_H #define LIB2D_H #include "gr.h" #include "renderer.h" // structures struct mem_bitmap { char *data; int16_t bpp; int rowsize; uint16_t alloced : 2; uint16_t flag : 14; }; #define MEMFLAG_TRANSBLT 1 // --------------------------------------------------------------------------- // Memory surface functions bool gr_mem_surf_Create(ddgr_surface *sf); bool gr_mem_surf_Destroy(ddgr_surface *sf); // generic clearing functions void gr_mem_surf_Clear(ddgr_surface *dsf, ddgr_color col, int l, int t, int w, int h); // non-scaling bitmap blt functions bool gr_mem_surf_Blt(ddgr_surface *dsf, int dx, int dy, ddgr_surface *ssf, int sx, int sy, int sw, int sh); // retrieves a pointer to surface memory. allowed to lock one surface multiple times. bool gr_mem_surf_Lock(ddgr_surface *sf, void **ptr, int *rowsize); bool gr_mem_surf_Unlock(ddgr_surface *sf, void *ptr); // initializes a surface based of preinitialized objects by the user. bool gr_mem_surf_Init(ddgr_surface *sf, char *data, int rowsize); #endif