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

Enhancements to typed arrays #39

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open

Commits on Aug 31, 2015

  1. Fix GHCJS.Foreign.Export

    - the hs$export function had parameters fp2a fp2b but attempted to
      read fp1c and fp1d, which did not exist.
    - Export.hs assumed deref was called hs$derefExportedValue but the
      actual function is hs$derefValue.
    - A call to hs$retain was missing from the export.
    John Lenz committed Aug 31, 2015
    Configuration menu
    Copy the full SHA
    6d10cb3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request ghcjs#22 from wuzzeb/improved-base

    Fix GHCJS.Foreign.Export
    luite committed Aug 31, 2015
    Configuration menu
    Copy the full SHA
    8ff920f View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2015

  1. drop JSRef phantom

    luite committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    5878a2f View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2015

  1. Configuration menu
    Copy the full SHA
    b8a9e43 View commit details
    Browse the repository at this point in the history
  2. correct previous commit

    eryx67 committed Sep 5, 2015
    Configuration menu
    Copy the full SHA
    c44e6d1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request ghcjs#23 from eryx67/improved-base

    xhr must be opened before any modification, also add required exports
    luite committed Sep 5, 2015
    Configuration menu
    Copy the full SHA
    88b7f91 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2015

  1. Configuration menu
    Copy the full SHA
    fa28889 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2015

  1. Add Nullable

    hamishmack committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    2f0365f View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2015

  1. Configuration menu
    Copy the full SHA
    755934b View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2015

  1. Configuration menu
    Copy the full SHA
    6e60f18 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2015

  1. Merge pull request ghcjs#32 from tavisrudd/master

    add h$isBoolean to jsbits. Req'd by GHCJS.Foreign
    luite committed Sep 28, 2015
    Configuration menu
    Copy the full SHA
    c694b0f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c5f537d View commit details
    Browse the repository at this point in the history
  3. Add time stamps to requestAnimationFrame

    requestAnimationFrame provides its callback with a DOMHighResTimeStamp,
    measuring a monotonic clock time for each frame. I've extended the
    bindings such that waitForAnimationFrame and inAnimationFrame provide
    this value to the caller.
    ocharles committed Sep 28, 2015
    Configuration menu
    Copy the full SHA
    9eb215a View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2015

  1. Merge pull request ghcjs#33 from ocharles/raf-timestamp

    Add Performance.now and add time stamp information to requestAnimationFrame bindings
    luite committed Sep 29, 2015
    Configuration menu
    Copy the full SHA
    5a47090 View commit details
    Browse the repository at this point in the history
  2. fix JavaScript.Web.Performance

    luite committed Sep 29, 2015
    Configuration menu
    Copy the full SHA
    60276e6 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2015

  1. Rename JSRef to JSVal

    mgsloan committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    89d1957 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7a9cb3c View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2015

  1. Added Float32/64 Typed array types

    Seems like someone forgot to re-export Float32Array and  Float64Array in JavaScript.TypedArray from JavaScript.TypedArray.Internal.Types.
    Also I would like to have (TypedArray a => JSRef -> a) interface for my WebGL things: some of the webGL methods return typed arrays of arbitrary type - https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView
    achirkin committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    3d07ea6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request ghcjs#36 from mgsloan/jsref-to-jsval

    Rename JSRef to JSVal
    luite committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    49d9dbc View commit details
    Browse the repository at this point in the history
  3. Merge pull request ghcjs#38 from achirkin/patch-1

    Added Float32/64 Typed array types
    luite committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    71ed427 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2015

  1. Configuration menu
    Copy the full SHA
    e4271f1 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2015

  1. Configuration menu
    Copy the full SHA
    b37066e View commit details
    Browse the repository at this point in the history
  2. add missing xhr.js foreign file

    luite committed Oct 16, 2015
    Configuration menu
    Copy the full SHA
    29c1c4f View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2015

  1. typed arrays redone

    achirkin committed Oct 18, 2015
    Configuration menu
    Copy the full SHA
    cf5ea14 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2015

  1. Fix RegExp constructor

    rimmington committed Oct 25, 2015
    Configuration menu
    Copy the full SHA
    b56ae21 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2015

  1. Configuration menu
    Copy the full SHA
    18afd47 View commit details
    Browse the repository at this point in the history
  2. Fix Data.Text.Lazy macros

    kfigiela authored and luite committed Oct 27, 2015
    Configuration menu
    Copy the full SHA
    619edd0 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2015

  1. Configuration menu
    Copy the full SHA
    9601c2b View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2015

  1. Configuration menu
    Copy the full SHA
    a19de47 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6f801f6 View commit details
    Browse the repository at this point in the history
  3. export getData for MessageEvent

    luite committed Oct 30, 2015
    Configuration menu
    Copy the full SHA
    41f5344 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2015

  1. Configuration menu
    Copy the full SHA
    bdd8bc3 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2015

  1. Configuration menu
    Copy the full SHA
    a0d750d View commit details
    Browse the repository at this point in the history
  2. small fixes to arrays

    achirkin committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    85552b5 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2015

  1. add non-preemptible threads, fix race condition in GHCJS.Concurrent.s…

    …ynchronously, fix websocket, add bindings for Location object
    luite committed Nov 6, 2015
    Configuration menu
    Copy the full SHA
    04aac2a View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2015

  1. Configuration menu
    Copy the full SHA
    6328c2d View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2015

  1. Configuration menu
    Copy the full SHA
    4e9c20f View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2015

  1. Configuration menu
    Copy the full SHA
    f8b853f View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2015

  1. implement js_setLineDash and js_lineDashOffSet

    simple FFI wrappers in the Canvas module
    bergey committed Dec 25, 2015
    Configuration menu
    Copy the full SHA
    3bf1ab6 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2016

  1. Merge pull request ghcjs#52 from ghcjs/dashing-canvas

    implement js_setLineDash and js_lineDashOffSet
    bergey committed Jan 9, 2016
    Configuration menu
    Copy the full SHA
    fb7c694 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2016

  1. Configuration menu
    Copy the full SHA
    d4aa0fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3ce3a1e View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2016

  1. Update README.md

    achirkin committed Mar 14, 2016
    Configuration menu
    Copy the full SHA
    f61860d View commit details
    Browse the repository at this point in the history
  2. naming changes

    achirkin committed Mar 14, 2016
    Configuration menu
    Copy the full SHA
    0549b7d View commit details
    Browse the repository at this point in the history
  3. modified gitignore

    achirkin committed Mar 14, 2016
    Configuration menu
    Copy the full SHA
    a2f662a View commit details
    Browse the repository at this point in the history