Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/makesdna/DNA_gpu_types.h')
-rw-r--r--source/blender/makesdna/DNA_gpu_types.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/source/blender/makesdna/DNA_gpu_types.h b/source/blender/makesdna/DNA_gpu_types.h
index da5abf0a0eb..8cab90b0a46 100644
--- a/source/blender/makesdna/DNA_gpu_types.h
+++ b/source/blender/makesdna/DNA_gpu_types.h
@@ -26,40 +26,40 @@
/** Properties for dof effect. */
typedef struct GPUDOFSettings {
- /** Focal distance for depth of field. */
- float focus_distance;
- float fstop;
- float focal_length;
- float sensor;
- float rotation;
- float ratio;
- int num_blades;
- int high_quality;
+ /** Focal distance for depth of field. */
+ float focus_distance;
+ float fstop;
+ float focal_length;
+ float sensor;
+ float rotation;
+ float ratio;
+ int num_blades;
+ int high_quality;
} GPUDOFSettings;
/** Properties for SSAO effect. */
typedef struct GPUSSAOSettings {
- float factor;
- float color[3];
- float distance_max;
- float attenuation;
- /** Ray samples, we use presets here for easy control instead of. */
- int samples;
- char _pad[4];
+ float factor;
+ float color[3];
+ float distance_max;
+ float attenuation;
+ /** Ray samples, we use presets here for easy control instead of. */
+ int samples;
+ char _pad[4];
} GPUSSAOSettings;
typedef struct GPUFXSettings {
- GPUDOFSettings *dof;
- GPUSSAOSettings *ssao;
- /** #eGPUFXFlags. */
- char fx_flag;
- char _pad[7];
+ GPUDOFSettings *dof;
+ GPUSSAOSettings *ssao;
+ /** #eGPUFXFlags. */
+ char fx_flag;
+ char _pad[7];
} GPUFXSettings;
/* shaderfx enables */
typedef enum eGPUFXFlags {
- GPU_FX_FLAG_DOF = (1 << 0),
- GPU_FX_FLAG_SSAO = (1 << 1),
+ GPU_FX_FLAG_DOF = (1 << 0),
+ GPU_FX_FLAG_SSAO = (1 << 1),
} eGPUFXFlags;
-#endif /* __DNA_GPU_TYPES_H__ */
+#endif /* __DNA_GPU_TYPES_H__ */