mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 02:28:51 +00:00
OGL: Fix brace and body placements
Also got rid of void argument specifiers. These are a carryover from C.
This commit is contained in:
parent
d5d5580424
commit
960b54670c
16 changed files with 221 additions and 90 deletions
|
@ -12,7 +12,8 @@
|
|||
namespace OGL
|
||||
{
|
||||
|
||||
class StreamBuffer {
|
||||
class StreamBuffer
|
||||
{
|
||||
|
||||
public:
|
||||
static StreamBuffer* Create(u32 type, u32 size);
|
||||
|
@ -37,7 +38,7 @@ public:
|
|||
m_iterator += stride - padding;
|
||||
}
|
||||
return Map(size);
|
||||
}
|
||||
}
|
||||
|
||||
const u32 m_buffer;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue