@@ -29,21 +29,21 @@ See more [[./examples][examples]].
2929
3030- All C functions are exposed as PHP global functions, for example:
3131
32- | C | PHP |
32+ | C | raylib-phpcpp |
3333 |-------------------------------+-------------------------------|
3434 | WindowShouldClose() | WindowShouldClose() |
3535 | InitWindow(800, 450, "title") | InitWindow(800, 450, "title") |
3636
3737- Color constants are exposed as global functions, for example:
3838
39- | C | PHP |
40- |-----------+-------------|
41- | LIGHTGRAY | LIGHTGRAY() |
42- | GREEN | GREEN() |
39+ | C | raylib-phpcpp |
40+ |-----------+--------------- |
41+ | LIGHTGRAY | LIGHTGRAY() |
42+ | GREEN | GREEN() |
4343
44- - All C enums are exposed global constants with ~RL_~ prefix:
44+ - All C enums are exposed as global constants with ~RL_~ prefix:
4545
46- | C | PHP |
46+ | C | raylib-phpcpp |
4747 |----------------+-------------------|
4848 | FLAG_SHOW_LOGO | RL_FLAG_SHOW_LOGO |
4949 | KEY_COMMA | RL_KEY_COMMA |
@@ -81,6 +81,18 @@ See more [[./examples][examples]].
8181 | ImageCopy | [[https://www.php.net/manual/en/book.image.php][gd extension]] |
8282 | ImageCrop | [[https://www.php.net/manual/en/book.image.php][gd extension]] |
8383
84+ - API differences
85+
86+ TBD.
87+
88+ | Function |
89+ |---------------------|
90+ | GetDroppedFiles |
91+ | ImageExtractPalette |
92+ | LoadModelAnimations |
93+ | LoadMeshes |
94+ | LoadMaterials |
95+
8496** Completeness
8597
8698The binding is auto-generated from ~raylib.h~, most functions and features are supported. Not supported function are commented out.
0 commit comments