Fix for windows-users #2
4 changed files with 7 additions and 6 deletions
|
@ -1,10 +1,8 @@
|
|||
---
|
||||
# We'll use defaults from the LLVM style, but with 4 columns indentation.
|
||||
BasedOnStyle: LLVM
|
||||
IndentWidth: 4
|
||||
---
|
||||
|
||||
Language: Cpp
|
||||
# Force pointers to the type for C++.
|
||||
DerivePointerAlignment: false
|
||||
PointerAlignment: Left
|
||||
---
|
||||
PointerAlignment: Left
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
build
|
||||
.vscode
|
||||
.vscode
|
||||
/.vs
|
||||
|
|
|
@ -84,7 +84,7 @@ Rectangle Context::viewport() const { return impl_->viewport(); }
|
|||
|
||||
void Context::clear() { impl_->clear(); }
|
||||
|
||||
u_int32_t Context::get_error() const { return impl_->get_error(); }
|
||||
uint32_t Context::get_error() const { return impl_->get_error(); }
|
||||
|
||||
RGBA Context::clearcolor() const { return impl_->clear_color_; }
|
||||
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
#undef max
|
||||
|
||||
namespace paradiso {
|
||||
|
||||
struct Renderer::impl {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue