ffi-headers/glfw3-headers

PHP FFI GLFW3 头文件

1.0.2 2022-08-17 19:29 UTC

This package is auto-updated.

Last update: 2024-09-18 05:43:36 UTC


README

Latest Stable Version Latest Unstable Version Total Downloads License MIT

GLFW3 头文件

这是为PHP准备的GLFW3的C头文件。

要求

  • PHP >= 8.1

安装

库作为composer仓库可用,可以使用以下命令在项目的根目录中安装。

$ composer require ffi-headers/glfw3-headers

使用方法

use FFI\Headers\GLFW3;

$headers = GLFW3::create(
    GLFW3\Platform::X11,  // Window API
    GLFW3\Context::GLX, // Context API
    GLFW3\Version::V3_3_6,      // GLFW Headers Version
);

echo $headers;

请注意,使用头文件不是最新版本

  • 下载和安装需要时间(这将在初始化过程中在后台完成)。
  • 可能与PHP头文件库不兼容。