List of commits:
Subject Hash Author Date (UTC)
Add optional nearest filtering for framebuffers 9816591d41a467927a186ff6c0c89e416f7b7591 fluffrabbit 2024-09-27 19:27:32
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 9816591d41a467927a186ff6c0c89e416f7b7591 - Add optional nearest filtering for framebuffers
Author: fluffrabbit
Author date (UTC): 2024-09-27 19:27
Committer name: fluffrabbit
Committer date (UTC): 2024-09-27 19:27
Parent(s): 0cd4093bb5b4d62773de5c08c1368594bbf8f6d4
Signer:
Signing key:
Signing status: N
Tree: 4f2a79f5bc59580ba0c9d31da13866f173902970
File Lines added Lines deleted
include/fgc.h 4 4
src/cfps.c 1 1
File include/fgc.h changed (mode: 100644) (index 37c0681..6ff4312)
... ... void fgcSetPipeline( FGCPipeline pipeline );
301 301
302 302 void fgcSetFog( FGCColor col ); void fgcSetFog( FGCColor col );
303 303
304 FGCFramebuffer fgcCreateFramebuffer( GLsizei width, GLsizei height, bool cubemap, GLenum internalFmt, GLsizei multisample );
304 FGCFramebuffer fgcCreateFramebuffer( GLsizei width, GLsizei height, bool cubemap, bool filter, GLenum internalFmt, GLsizei multisample );
305 305 void fgcResizeFramebuffer( FGCFramebuffer *fb, GLsizei width, GLsizei height, GLsizei multisample ); void fgcResizeFramebuffer( FGCFramebuffer *fb, GLsizei width, GLsizei height, GLsizei multisample );
306 306 FGCTexture fgcGetFramebufferTexture( FGCFramebuffer *fb, unsigned int i ); FGCTexture fgcGetFramebufferTexture( FGCFramebuffer *fb, unsigned int i );
307 307 void fgcSetFramebuffer( FGCFramebuffer *fb, float viewScale ); void fgcSetFramebuffer( FGCFramebuffer *fb, float viewScale );
 
... ... void fgcSetFog( FGCColor col ){
592 592 fgcFogColor = col; fgcFogColor = col;
593 593 } }
594 594
595 FGCFramebuffer fgcCreateFramebuffer( GLsizei width, GLsizei height, bool cubemap, GLenum internalFmt, GLsizei multisample ){
595 FGCFramebuffer fgcCreateFramebuffer( GLsizei width, GLsizei height, bool cubemap, bool filter, GLenum internalFmt, GLsizei multisample ){
596 596 // https://stackoverflow.com/questions/46535341 // https://stackoverflow.com/questions/46535341
597 597 // This framebuffer API does not currently support mipmapping. // This framebuffer API does not currently support mipmapping.
598 598
 
... ... FGCFramebuffer fgcCreateFramebuffer( GLsizei width, GLsizei height, bool cubemap
674 674 if( multisample == 0 ){ if( multisample == 0 ){
675 675 glTexParameteri( fb.texture_type, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE ); glTexParameteri( fb.texture_type, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
676 676 glTexParameteri( fb.texture_type, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE ); glTexParameteri( fb.texture_type, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
677 glTexParameteri( fb.texture_type, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
678 glTexParameteri( fb.texture_type, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
677 glTexParameteri( fb.texture_type, GL_TEXTURE_MIN_FILTER, filter ? GL_LINEAR : GL_NEAREST );
678 glTexParameteri( fb.texture_type, GL_TEXTURE_MAG_FILTER, filter ? GL_LINEAR : GL_NEAREST );
679 679 } }
680 680
681 681 // Unbind the texture. // Unbind the texture.
File src/cfps.c changed (mode: 100644) (index 4f2a5a2..a3a196e)
... ... int main(){
367 367 } }
368 368
369 369 // Create the gbuffer. // Create the gbuffer.
370 gbuffer = fgcCreateFramebuffer(fgcGetDisplayWidth(), fgcGetDisplayHeight(), false, GL_RGB, 0);
370 gbuffer = fgcCreateFramebuffer(fgcGetDisplayWidth(), fgcGetDisplayHeight(), false, false, GL_RGB, 0);
371 371
372 372 mesh_pagoda = fgcLoadOBJ("base/pagoda.obj"); mesh_pagoda = fgcLoadOBJ("base/pagoda.obj");
373 373
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