diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/blueshift_quartz.pyx | 4 | ||||
-rw-r--r-- | src/blueshift_randr.pyx | 2 | ||||
-rw-r--r-- | src/blueshift_vidmode.pyx | 2 | ||||
-rw-r--r-- | src/blueshift_w32gdi.pyx | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/blueshift_quartz.pyx b/src/blueshift_quartz.pyx index 528c08f..8b8da88 100644 --- a/src/blueshift_quartz.pyx +++ b/src/blueshift_quartz.pyx @@ -107,7 +107,7 @@ def quartz_crtc_count(): ''' Get the number of CRTC:s on the system - @return The number of CRTC:s on the system + @return :int The number of CRTC:s on the system ''' return blueshift_quartz_crtc_count() @@ -145,7 +145,7 @@ def quartz_apply(crtc_indices, r_curve, g_curve, b_curve): @param r_curve:list<float> The red colour curve @param g_curve:list<float> The green colour curve @param b_curve:list<float> The blue colour curve - @return Zero on success + @return :int Zero on success ''' # Convert curves to C floats for i in range(256): diff --git a/src/blueshift_randr.pyx b/src/blueshift_randr.pyx index 7de1d13..842a026 100644 --- a/src/blueshift_randr.pyx +++ b/src/blueshift_randr.pyx @@ -133,7 +133,7 @@ def randr_apply(crtc_indices, r_curve, g_curve, b_curve): @param r_curve:list<int> The red colour curve @param g_curve:list<int> The green colour curve @param b_curve:list<int> The blue colour curve - @return Zero on success + @return :int Zero on success ''' # Convert curves to 16-bit C integers for i in range(256): diff --git a/src/blueshift_vidmode.pyx b/src/blueshift_vidmode.pyx index 772befd..f5d3760 100644 --- a/src/blueshift_vidmode.pyx +++ b/src/blueshift_vidmode.pyx @@ -131,7 +131,7 @@ def vidmode_apply(r_curve, g_curve, b_curve): @param r_curve:list<int> The red colour curve @param g_curve:list<int> The green colour curve @param b_curve:list<int> The blue colour curve - @return Zero on success + @return :int Zero on success ''' # Convert curves to 16-bit C integers for i in range(256): diff --git a/src/blueshift_w32gdi.pyx b/src/blueshift_w32gdi.pyx index 0886a7e..2a9750b 100644 --- a/src/blueshift_w32gdi.pyx +++ b/src/blueshift_w32gdi.pyx @@ -87,7 +87,7 @@ def w32gdi_crtc_count(): ''' Get the number of CRTC:s on the system - @return The number of CRTC:s on the system + @return :int The number of CRTC:s on the system ''' return blueshift_w32gdi_crtc_count() @@ -125,7 +125,7 @@ def w32gdi_apply(crtc_indices, r_curve, g_curve, b_curve): @param r_curve:list<int> The red colour curve @param g_curve:list<int> The green colour curve @param b_curve:list<int> The blue colour curve - @return Zero on success + @return :int Zero on success ''' # Convert curves to 16-bit C integers for i in range(256): |