Skip to content

Tags: servo/mozangle

Tags

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update vendored angle to FIREFOX_140_12_0esr_RELEASE (#100)

* Update vendored angle to FIREFOX_140_12_0esr_RELEASE

Followed the instruction from the readme, deleting gfx/angle and then
re-vendoring by copying the gfx/angle directory from the upstream 140.12.0 ESR
firefox release (commit f802561).
This does not yet contain our patches.

* apply egl-loader.patch

* drop unneeded patch, already fixed upstream

* regenerate build data (whitespace only)

* bump version to 0.5.6

* update UPSTREAM file

* bump to 0.6.0

v0.5.5

Toggle v0.5.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version from 0.5.4 to 0.5.5 (#98)

Signed-off-by: Sam <16504129+sagudev@users.noreply.github.com>

v0.5.4

Toggle v0.5.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update bindgen to 0.72.1 and bump mozangle to 0.5.4 (#96)

This allows removing a duplicate bindgen version in servo

v0.5.3

Toggle v0.5.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump mozangle version to 0.5.3 (#91)

v0.5.2

Toggle v0.5.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add EGL_EXT_device_query to bindings generation (#84)

Co-authored-by: Glenn Watson <git@intuitionlibrary.com>

v0.5.1

Toggle v0.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update to version 0.5.1 (#75)

This will allow dependencies to pick up the new version of bindgen.

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Upgrade the version of angle (#69)

* Update gfx/angle

* Update UPSTREAM

* Update patches

* Apply patches

* Generate build data

* Fixes for linux

* Update test expectations

* Fixes for windows

* libz only on feature

* CompileOptions mozangle

* Remove redundant windows checks

* Compile all gfx/angle/targets as separate libs

* Version 0.5

* whole-archive for libEGL ang libGLESV2

* Fix CompileOptions::mozangle()

* Fixups from review

* Remove some stray printlns

* fixups

* Update generate_build_data.py

---------

Co-authored-by: sagudev <you@example.com>
Co-authored-by: Martin Robinson <mrobinson@igalia.com>

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update the version to 0.4.0 (#67)

v0.3.3

Toggle v0.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Auto merge of #50 - jamienicol:num-varying-vecs, r=jrmuizel

Add function to count number of unpacked varying vectors

This counts the number of vectors used by each active varying in a
shader. This can be used to ensure that a shader will succesfully
compile without using more than GL_MAX_VARYING_VECTORS on devices that
do not perform spec-compliant packing of varyings. This is in contrast
to sh::CheckVariablesWithinPackingLimits(), which checks whether there
are enough vectors *with* spec-compliant packing.