Commit: d4726517135fe3b7d98926ca59e1894fe329f1b2
Author: Sergey Sharybin
Date:   Thu Nov 20 21:05:03 2014 +0100
Branches: input_method_editor
https://developer.blender.org/rBd4726517135fe3b7d98926ca59e1894fe329f1b2

Compsitor: White space cleanup

===================================================================

M       source/blender/compositor/operations/COM_OpenCLKernels.cl

===================================================================

diff --git a/source/blender/compositor/operations/COM_OpenCLKernels.cl 
b/source/blender/compositor/operations/COM_OpenCLKernels.cl
index 1b965eb..cbd05cb 100644
--- a/source/blender/compositor/operations/COM_OpenCLKernels.cl
+++ b/source/blender/compositor/operations/COM_OpenCLKernels.cl
@@ -80,10 +80,10 @@ __kernel void bokehBlurKernel(__read_only image2d_t 
boundingBox, __read_only ima
 }
 
 //KERNEL --- DEFOCUS /VARIABLESIZEBOKEHBLUR ---
-__kernel void defocusKernel(__read_only image2d_t inputImage, __read_only 
image2d_t bokehImage, 
-                                       __read_only image2d_t inputSize,
-                                       __write_only image2d_t output, int2 
offsetInput, int2 offsetOutput, 
-                                       int step, int maxBlurScalar, float 
threshold, float scalar, int2 dimension, int2 offset) 
+__kernel void defocusKernel(__read_only image2d_t inputImage, __read_only 
image2d_t bokehImage,
+                            __read_only image2d_t inputSize,
+                            __write_only image2d_t output, int2 offsetInput, 
int2 offsetOutput,
+                            int step, int maxBlurScalar, float threshold, 
float scalar, int2 dimension, int2 offset)
 {
        float4 color = {1.0f, 0.0f, 0.0f, 1.0f};
        int2 coords = {get_global_id(0), get_global_id(1)};
@@ -212,8 +212,8 @@ __kernel void erodeKernel(__read_only image2d_t inputImage, 
 __write_only image2
 
 // KERNEL --- DIRECTIONAL BLUR ---
 __kernel void directionalBlurKernel(__read_only image2d_t inputImage,  
__write_only image2d_t output,
-                           int2 offsetOutput, int iterations, float scale, 
float rotation, float2 translate,
-                           float2 center, int2 offset)
+                                    int2 offsetOutput, int iterations, float 
scale, float rotation, float2 translate,
+                                     float2 center, int2 offset)
 {
        int2 coords = {get_global_id(0), get_global_id(1)};
        coords += offset;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to