8 lines
189 B
C
8 lines
189 B
C
#pragma once
|
|
|
|
#include <efi.h>
|
|
#include <graphics/context.h>
|
|
|
|
#define COLOR_RGB EFI_GRAPHICS_OUTPUT_BLT_PIXEL
|
|
|
|
void draw_pixel(unsigned int x, unsigned int y, COLOR_RGB color); // 画像素
|