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. |