Skip to content

Commit

Permalink
set the default value of enble_fxaa
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangdunchun authored and hyv1001 committed Jun 14, 2022
1 parent b989d28 commit 55c09cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ namespace Pilot
VkImageView m_directional_light_shadow_color_image_view;

bool m_is_show_axis {false};
bool m_enable_fxaa {true};
bool m_enable_fxaa {false};
size_t m_selected_axis {3};
MeshPerframeStorageBufferObject m_mesh_perframe_storage_buffer_object;
AxisStorageBufferObject m_axis_storage_buffer_object;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Pilot

struct RenderPipelineInitInfo
{
bool enable_fxaa;
bool enable_fxaa {false};
std::shared_ptr<RenderResourceBase> render_resource;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace Pilot
REFLECTION_BODY(GlobalRenderingRes);

public:
bool m_enable_fxaa;
bool m_enable_fxaa {false};
SkyBoxIrradianceMap m_skybox_irradiance_map;
SkyBoxSpecularMap m_skybox_specular_map;
std::string m_brdf_map;
Expand Down

0 comments on commit 55c09cf

Please sign in to comment.