跳转至

size.h

Size data structure and utilities for 2D graphics.

Classes

Name
struct CFBDGraphicSize
Represents dimensions (width and height) of a rectangular area.

Source code

#pragma once
#include "cfbd_graphic_define.h"
#include "device/graphic_device.h"

typedef struct
{
    SizeBaseType width;  
    SizeBaseType height; 
} CFBDGraphicSize;

void CFBDGraphic_GetScreenSize(CFBD_GraphicDevice* device, CFBDGraphicSize* pSize);

 // End of Size_Module group

Updated on 2026-02-03 at 13:21:55 +0000