Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ca241df
now a node module
thejohnhoffer May 15, 2018
80fe2b1
add npm ignore
thejohnhoffer May 15, 2018
f2f7554
clean up package
thejohnhoffer May 17, 2018
6069b0d
do not override built-in "interface"
thejohnhoffer May 9, 2018
d7b4c20
seaGL: Avoid overwriting original tiles, update world on init
thejohnhoffer May 5, 2018
1f12730
no longer reload tiles on openSeadragonGL setup
thejohnhoffer May 9, 2018
dfb14f1
clean up attribute parameterization
thejohnhoffer May 15, 2018
c406aca
update shape on each draw call
thejohnhoffer May 16, 2018
e1f1995
attempt to use 16-bit textures
thejohnhoffer May 18, 2018
643d970
install specific packages
thejohnhoffer May 18, 2018
4e53397
build with new openseadragon
thejohnhoffer May 18, 2018
15fa8a8
fix event handler for multiple events
thejohnhoffer May 18, 2018
f034a14
be explicit about event handlers
thejohnhoffer May 18, 2018
c853e32
get webgl2 context
thejohnhoffer May 18, 2018
3fceb99
actually convert to u16 array
thejohnhoffer May 18, 2018
9c6409d
remove header from decoded png
thejohnhoffer May 18, 2018
4c60773
support non-power-of-two textures
thejohnhoffer May 18, 2018
1c0d1f2
set tile sampler
thejohnhoffer May 18, 2018
568bf78
use standard upng.js
thejohnhoffer May 18, 2018
7357e9e
remove many_channel_bitdepth
thejohnhoffer May 18, 2018
45e04c8
use red-green unsigned integer
thejohnhoffer May 18, 2018
41f8160
update openseadragon
thejohnhoffer May 19, 2018
99e2afe
tidy code
thejohnhoffer May 19, 2018
a211e1b
trim obfuscated code
thejohnhoffer May 19, 2018
d211f58
clean up webGL interface
thejohnhoffer May 19, 2018
bac6f51
shorten line in updateShape
thejohnhoffer May 19, 2018
1585ae8
scale corner tiles when rewriting to canvas
thejohnhoffer May 21, 2018
e6ad53a
transfer uv coordinates instaed of clip coordinates
thejohnhoffer May 21, 2018
401f83d
reject decoder if no image
thejohnhoffer May 25, 2018
24df0f4
allow user to set width and height
thejohnhoffer May 30, 2018
c35d6e5
allow uint32 pngs
thejohnhoffer Nov 25, 2020
3dfb27a
simplify format string
thejohnhoffer Nov 25, 2020
9d0f285
simplify format string
thejohnhoffer Nov 25, 2020
aff376b
bump openseadragon to latest commit
thejohnhoffer Mar 4, 2021
7751206
prevent cache of shaders
thejohnhoffer Mar 31, 2021
f287573
Updating github package.json
simonwarchol Jun 29, 2021
817843c
Merge pull request #11 from simonwarchol/webgl2
thejohnhoffer Jul 7, 2021
ea96d6e
update openseadragon git url
thejohnhoffer Mar 30, 2022
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
23 changes: 23 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"presets": [
["env", {
"targets": {
"browsers": ["> 1%"],
"uglify": true
},
"modules": false
}]
],
"plugins": [],
"env": {
"test": {
"presets": [
["env", {
"targets": {
"node": "current"
}
}]
]
}
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
*.swp
.idea/

build
node_modules
11 changes: 11 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
*.swp
.idea/

build
node_modules

package-lock.json
webpack.config.js
index.html
CNAME
demo
Loading