Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sharedContext argument to glfwCreateWindow #82

Merged
merged 10 commits into from
Jan 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@ language: node_js

matrix:
include:
- os: linux
sudo: required
dist: trusty
node_js: 8
addons:
apt:
packages:
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
- libegl1-mesa-dev
- mesa-utils
- mesa-utils-extra
- os: osx
- os: linux
sudo: required
dist: trusty
node_js: 8
addons:
apt:
packages:
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
- libegl1-mesa-dev
- mesa-utils
- mesa-utils-extra
- os: osx

node_js: 8
node_js: 8
install:
- travis_retry npm install -g [email protected]
- travis_wait esy install
- travis_retry npm install -g [email protected]
- travis_wait esy install
script:
- travis_wait 40 esy build
- esy b ./travis-test.sh
- travis_wait 40 esy build
- esy b ./travis-test.sh
cache:
timeout: 360
directories:
- "$HOME/.esy"
- "$HOME/.esy"
3 changes: 3 additions & 0 deletions esy.lock/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# Set eol to LF so files aren't converted to CRLF-eol on Windows.
* text eol=lf
3 changes: 3 additions & 0 deletions esy.lock/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# Reset any possible .gitignore, we want all esy.lock to be un-ignored.
!*
Loading