Revision 11045617aa83f22895897e45d021b524d3a6acb9 authored by COCCO Giovanni on 28 February 2025, 12:08:40 UTC, committed by COCCO Giovanni on 28 February 2025, 12:08:40 UTC
1 parent 3b61880
renderingsettings.h
#pragma once
#include <QWidget>
#include <QColorDialog>
#include <QLabel>
#include "src/UI/vulkanwindow.h"
class RenderingSettings: public QWidget {
public:
RenderingSettings(VulkanWindow *window);
~RenderingSettings();
private:
QColorDialog *m_colorDialog;
VulkanWindow *m_window;
float m_anisotropy = 0.7;
QLabel *m_anisoLabel;
float m_roughness = 0.2;
QLabel *m_roughLabel;
};

Computing file changes ...