Issue 184327
Summary how to format for this style?
Labels new issue
Assignees
Reporter sdragonx
    I want this format:
```
    vertex vs[] = {
 vertex(x,     y,     0.0f, 0.0f, 0.0f, color),
        vertex(x, y + h, 0.0f, 0.0f, 1.0f, color),
        vertex(x + w, y + h, 0.0f, 1.0f, 1.0f, color),
        vertex(x + w, y,     0.0f, 1.0f, 0.0f, color),
 };
```
no matter how I set it, it will be formatted like this:
```
 vertex vs[] = {
        vertex(x, y, 0.0f, 0.0f, 0.0f, color),
 vertex(x, y + h, 0.0f, 0.0f, 1.0f, color),
        vertex(x + w, y + h, 0.0f, 1.0f, 1.0f, color),
        vertex(x + w, y, 0.0f, 1.0f, 0.0f, color),
    };
```


_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to