comparing with whole number floats is okay.
This commit is contained in:
parent
6726faf719
commit
2975aa2dfb
@ -55,7 +55,7 @@ static void game_object_file_action(char const *path, enum FilewatchAction actio
|
||||
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
if (fabsf(0.0f - ctx.game.frame_number) > 0.00001f) {
|
||||
if (ctx.game.frame_number != 0.0f) {
|
||||
log_info("Game object was reloaded\n");
|
||||
reset_state();
|
||||
}
|
||||
|
@ -26,8 +26,8 @@ void draw_billboard(char const *texture,
|
||||
batch_p = &ctx.billboard_batches[hmlenu(ctx.billboard_batches) - 1]; /* TODO: can last index be used? */
|
||||
}
|
||||
|
||||
bool const texture_region_valid = fabsf(texture_region.w - texture_region.h) > 0.00001f
|
||||
&& fabsf(0.0f - texture_region.w) > 0.00001f;
|
||||
bool const texture_region_valid = texture_region.h != 0.0f
|
||||
&& texture_region.w != 0.0f;
|
||||
|
||||
struct SpaceBillboard billboard = {
|
||||
.color = color,
|
||||
|
@ -433,7 +433,7 @@ TWN_API void draw_camera_2d(Vec2 position,
|
||||
|
||||
/* TODO: check for NaNs and alike */
|
||||
void draw_camera(Vec3 position, Vec3 direction, Vec3 up, float fov, float zoom, float draw_distance) {
|
||||
bool const orthographic = fabsf(0.0f - fov) < 0.00001f;
|
||||
bool const orthographic = fov == 0.0f;
|
||||
if (!orthographic && fov >= (float)(M_PI))
|
||||
log_warn("Invalid fov given (%f)", (double)fov);
|
||||
|
||||
@ -467,7 +467,7 @@ DrawCameraFromPrincipalAxesResult draw_camera_from_principal_axes(Vec3 position,
|
||||
float zoom,
|
||||
float draw_distance)
|
||||
{
|
||||
bool const orthographic = fabsf(0.0f - fov) < 0.00001f;
|
||||
bool const orthographic = fov == 0.0f;
|
||||
if (!orthographic && fov >= (float)(M_PI))
|
||||
log_warn("Invalid fov given (%f)", (double)fov);
|
||||
|
||||
@ -504,7 +504,7 @@ DrawCameraUnprojectResult draw_camera_unproject(Vec2 point,
|
||||
float zoom,
|
||||
float draw_distance)
|
||||
{
|
||||
bool const orthographic = fabsf(0.0f - fov) < 0.00001f;
|
||||
bool const orthographic = fov == 0.0f;
|
||||
if (!orthographic && fov >= (float)(M_PI))
|
||||
log_warn("Invalid fov given (%f)", (double)fov);
|
||||
|
||||
|
@ -78,7 +78,7 @@ void start_render_frame(void) {
|
||||
|
||||
|
||||
void end_render_frame(void) {
|
||||
if (!ctx.render_double_buffered || (fabsf(1.0f - ctx.game.frame_number) < 0.00001f)) {
|
||||
if (!ctx.render_double_buffered || ctx.game.frame_number == 0.0f) {
|
||||
issue_deferred_draw_commands();
|
||||
SDL_GL_SwapWindow(ctx.window);
|
||||
arrsetlen(deferred_commands, 0);
|
||||
@ -561,7 +561,7 @@ void finally_draw_command(DeferredCommandDraw command) {
|
||||
glDepthRange(command.depth_range_low, command.depth_range_high);
|
||||
|
||||
/* TODO: cache it for constant parameters, which is a common case */
|
||||
if (command.pipeline == PIPELINE_SPACE && fabsf(0.0f - ctx.game_copy.fog_density) >= 0.00001f) {
|
||||
if (command.pipeline == PIPELINE_SPACE && ctx.game_copy.fog_density != 0.0f) {
|
||||
glEnable(GL_FOG);
|
||||
|
||||
/* clamp to valid range */
|
||||
|
@ -28,8 +28,8 @@ void draw_sprite(char const *path,
|
||||
{
|
||||
/* if .w and .h are zeroed then assume whole region */
|
||||
/* TODO: don't check here, just move to redner code ? */
|
||||
bool const texture_region_valid = fabsf(texture_region.w - texture_region.h) > 0.00001f
|
||||
&& fabsf(0.0f - texture_region.w) > 0.00001f;
|
||||
bool const texture_region_valid = texture_region.h != 0.0f
|
||||
&& texture_region.w != 0.0f;
|
||||
|
||||
SpritePrimitive sprite = {
|
||||
.rect = rect,
|
||||
|
@ -52,7 +52,6 @@ typedef struct EngineContext {
|
||||
MeshBatchItem *quad_batches;
|
||||
struct LineBatchItem {
|
||||
struct LineBatchItemKey {
|
||||
Color color;
|
||||
uint8_t thickness;
|
||||
} key;
|
||||
struct LinePrimitive value;
|
||||
|
Loading…
Reference in New Issue
Block a user