File README.md changed (mode: 100644) (index fdf801a..c41aade) |
1 |
1 |
# CFPS |
# CFPS |
2 |
2 |
|
|
3 |
|
FGC is a 3D graphics library written in C99. It can be used as a foundation for building graphics applications. Currently supports PC and Android targets. |
|
|
3 |
|
FGC (fgc.h) is a 3D graphics library written in C99. It can be used as a foundation for building graphics applications. Currently supports PC and (potentially) Android targets. Font rendering (fgc_font.h) is being worked on as a separate library. |
4 |
4 |
|
|
5 |
5 |
CFPS is a game engine built on top of FGC. |
CFPS is a game engine built on top of FGC. |
6 |
6 |
|
|
|
... |
... |
Keep it lightweight and simple above all else. Use mature tools and GL3/GLES3 fo |
10 |
10 |
|
|
11 |
11 |
## Boring details |
## Boring details |
12 |
12 |
|
|
13 |
|
FGC provides a public API that is primarily designed to display 3D graphics with OpenGL ES 2.0. However, it utilizes abstracted generality in the forms of internal helper functions and external helper libraries. These helpers do mundane things like context initialization and image loading. Advanced features like GPU selection are ignored. The public API provides a high level of abstraction to make graphics application development go faster. |
|
|
13 |
|
FGC provides a public API that is primarily designed to display 3D graphics with OpenGL ES 3.0. However, it utilizes abstracted generality in the forms of internal helper functions and external helper libraries. These helpers do mundane things like context initialization and image loading. Advanced features like GPU selection are ignored. The public API provides a high level of abstraction to make graphics application development go faster. |
14 |
14 |
|
|
15 |
15 |
For example, the internal function `_fgcLoadSurface` loads an `SDL_Surface` into client memory, utilizing commands from SDL, SDL_Image, and stb_image, depending which headers were included before `fgc.h`. The `.bmp` format is always supported, but SDL_Image and stb_image each allow loading `.png`, `.jpg`, and other formats. `fgcLoadTexture` uses `_fgcLoadSurface` internally to load textures. |
For example, the internal function `_fgcLoadSurface` loads an `SDL_Surface` into client memory, utilizing commands from SDL, SDL_Image, and stb_image, depending which headers were included before `fgc.h`. The `.bmp` format is always supported, but SDL_Image and stb_image each allow loading `.png`, `.jpg`, and other formats. `fgcLoadTexture` uses `_fgcLoadSurface` internally to load textures. |
16 |
16 |
|
|
17 |
|
Each FGC API call represents dozens or even hundreds of lines of code. This high level of abstraction makes things simple for you, the application programmer. If you need more advanced features, you can modify the library. API documentation is provided in `fgc.h`. `test.c` provides an example of usage. |
|
|
17 |
|
Each FGC API call represents dozens or even hundreds of lines of code. This high level of abstraction makes things simple for you, the application programmer. If you need more advanced features, you can modify the library. API documentation is provided in `fgc.h`. `cfps.c` provides an example of usage. |
18 |
18 |
|
|
19 |
19 |
## Android |
## Android |
20 |
20 |
|
|