Merge pull request #90 from tomaka/remove-glflush

Remove call to glFlush() before swap_buffers on win32
This commit is contained in:
tomaka 2014-10-31 17:46:16 +01:00
commit a908a14adc
4 changed files with 5 additions and 6 deletions

View file

@ -59,6 +59,7 @@ fn main() {
### Win32
- You must call `glFlush` before `swap_buffers`, or else on Windows 8 nothing will be visible on the window
- Pixel formats are not implemented
- If you don't have MinGW installed, you will need to provide `libgdi32.a` and `libopengl32.a` ; you can put them in `C:\Users\you\.rust`
- If you don't have `make` in your PATH, you can pass `--no-default-features --features "window"` when compiling ([see also](http://crates.io/manifest.html#the-[features]-section))