diff options
author | Anuj Phogat <[email protected]> | 2016-10-25 11:54:36 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2016-11-07 16:13:02 -0800 |
commit | 7fed07766dde7b551c0d85f709ea74c0c460bcaa (patch) | |
tree | 575e0b42843773bcf49541a0e8da7e3d5b22ff70 /src/mesa/main/framebuffer.c | |
parent | e32e5d214e4837efdb14c98b2993008e215c3010 (diff) |
mesa: Use separate line for function return type
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Ben Widawsky <[email protected]>
Diffstat (limited to 'src/mesa/main/framebuffer.c')
-rw-r--r-- | src/mesa/main/framebuffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index 46a6f644f06..e1505fa9709 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c @@ -994,7 +994,8 @@ _mesa_geometric_nonvalidated_samples(const struct gl_framebuffer *buffer) buffer->DefaultGeometry.NumSamples; } -bool _mesa_is_multisample_enabled(const struct gl_context *ctx) +bool +_mesa_is_multisample_enabled(const struct gl_context *ctx) { /* The sample count may not be validated by the driver, but when it is set, * we know that is in a valid range and no driver should ever validate a |