Skip to content

Commit aaa5f96

Browse files
authored
Merge branch 'master' into develop
2 parents 08cb2f3 + a97dfb4 commit aaa5f96

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/ISSUE_TEMPLATE.MD

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Every issue should include 3 things:
2+
1. System setup (GPU, CPU, OS version, Blender version)
3+
2. **Most ideally** a .blend scene to reproduce this simply. **SCREENSHOTS OR RENDERS ARE NOT A SCENE FILE**
4+
3. What the expected behavior or effect is. If possible include the error message.
5+
6+
You can get more information on the error message by opening Window -> Show System Console from blender and copying that text here. On MacOS launch Blender from the Terminal.
7+
8+
9+
<!--- Provide a general summary of the issue in the Title above -->
10+
11+
## Issue
12+
<!--- Tell us what happens instead of the expected behavior -->
13+
14+
## Steps to Reproduce
15+
<!--- Provide a scene file to reproduce this bug. -->
16+
<!--- Or steps to reproduce if it happens with live rendering -->
17+
18+
## System Setup (Environment)
19+
<!--- OS version -->
20+
<!--- GPU, CPU and driver version -->
21+
<!--- Blender version -->
22+
<!--- If using CPU or GPU rendering -->
23+
24+
## Detailed Description
25+
<!--- Provide a detailed description of the change or addition you are proposing -->
26+

src/rprblender/properties/render.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,14 @@ class RPR_UserSettings(bpy.types.PropertyGroup):
243243
min=5, max=100, default=25,
244244
)
245245

246+
viewport_denoiser_upscale: BoolProperty(
247+
name="Viewport Denoising and Upscaling",
248+
description="Denoise rendered image with Machine Learning denoiser.\n"
249+
"Rendering at 2 times lower resoluting then upscaling rendered image "
250+
"in the end of render",
251+
default=True if not utils.IS_MAC else False, # TODO remove when macos upscaler fixed
252+
)
253+
246254

247255
class RPR_RenderProperties(RPR_Properties):
248256
""" Main render properties. Available from scene.rpr """

0 commit comments

Comments
 (0)