Make clang-format more aggressive
clang-format always manages to mix spaces into tab-based indentation. Since we already require an exact tab-width of 8 it makes more sense to use spaces.
This commit is contained in:
@@ -10,10 +10,14 @@ void gles2_debayer_free(GLES2Debayer *self);
|
||||
|
||||
void gles2_debayer_use(GLES2Debayer *self);
|
||||
|
||||
void gles2_debayer_configure(GLES2Debayer *self, const uint32_t dst_width,
|
||||
const uint32_t dst_height, const uint32_t src_width,
|
||||
const uint32_t src_height, const uint32_t rotation,
|
||||
const bool mirrored, const float *colormatrix,
|
||||
const uint8_t blacklevel);
|
||||
void gles2_debayer_configure(GLES2Debayer *self,
|
||||
const uint32_t dst_width,
|
||||
const uint32_t dst_height,
|
||||
const uint32_t src_width,
|
||||
const uint32_t src_height,
|
||||
const uint32_t rotation,
|
||||
const bool mirrored,
|
||||
const float *colormatrix,
|
||||
const uint8_t blacklevel);
|
||||
|
||||
void gles2_debayer_process(GLES2Debayer *self, GLuint dst_id, GLuint source_id);
|
||||
|
Reference in New Issue
Block a user