List of commits:
Subject Hash Author Date (UTC)
Update readme 0cd4093bb5b4d62773de5c08c1368594bbf8f6d4 fluffrabbit 2024-09-27 18:01:31
fgcDrawFramebuffer needs index, not bool d076dc141feb0be619b8c09efa04142ff4757ad6 fluffrabbit 2024-09-27 17:57:31
Fix fgcLoadOBJ and update pagoda demo e77a6c778f218f906b73825aaa7d5924b0c4cd0f fluffrabbit 2024-09-18 02:06:07
Work on fgcLoadOBJ some more 3429e9a2b8fef4700ea61eede2974c532b6b4a5d fluffrabbit 2024-09-17 06:56:23
Work on fgcLoadOBJ e1d3eb6f3b0d009a30d1f2931f9d548cc8d14967 fluffrabbit 2024-09-14 06:37:16
Add fgcNormalizeVertices 7d7dfbf70275dc5cd3529e3755a2301ba06cb6fe fluffrabbit 2024-09-10 01:44:33
Draw scene color 12354112add161591f2801600ffc592faddef502 fluffrabbit 2024-07-11 22:18:26
Put framebuffer textures in an array ad44ec442db02cbb194559948d7183580b488cec fluffrabbit 2024-07-11 19:33:58
Initial commit cd1f3278f6f9a79255ba17b3b9eb0c224c8fd091 fluffrabbit 2024-07-10 17:32:30
Commit 0cd4093bb5b4d62773de5c08c1368594bbf8f6d4 - Update readme
Author: fluffrabbit
Author date (UTC): 2024-09-27 18:01
Committer name: fluffrabbit
Committer date (UTC): 2024-09-27 18:01
Parent(s): d076dc141feb0be619b8c09efa04142ff4757ad6
Signer:
Signing key:
Signing status: N
Tree: 3d4b55ef4fec6471ddcde6afa0e6c0ebb378192a
File Lines added Lines deleted
README.md 3 3
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
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/fluffrabbit/cfps

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/fluffrabbit/cfps

Clone this repository using git:
git clone git://git.rocketgit.com/user/fluffrabbit/cfps

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main