audio: move to exp/audio

Change-Id: I8640b1a38a292972db6dd00506e38c89470b2c15
Reviewed-on: https://go-review.googlesource.com/11311
Reviewed-by: Nigel Tao <nigeltao@golang.org>
This commit is contained in:
Burcu Dogan 2015-06-20 16:44:00 -07:00
parent e9faa8965b
commit 1d641b5393
10 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ import (
"golang.org/x/mobile/app"
"golang.org/x/mobile/app/debug"
"golang.org/x/mobile/audio"
"golang.org/x/mobile/exp/audio"
"golang.org/x/mobile/exp/sprite"
"golang.org/x/mobile/exp/sprite/clock"
"golang.org/x/mobile/exp/sprite/glsprite"

View File

@ -20,7 +20,7 @@
// license file to the open source notices of your application.
// OpenAL Soft's license file could be found at
// http://repo.or.cz/w/openal-soft.git/blob/HEAD:/COPYING.
package al // import "golang.org/x/mobile/audio/al"
package al // import "golang.org/x/mobile/exp/audio/al"
// Enable enables a capability.
func Enable(capability int32) {

View File

@ -18,7 +18,7 @@
// application.
// OpenAL Soft's license file could be found at
// http://repo.or.cz/w/openal-soft.git/blob/HEAD:/COPYING.
package audio // import "golang.org/x/mobile/audio"
package audio // import "golang.org/x/mobile/exp/audio"
import (
"bytes"
@ -28,7 +28,7 @@ import (
"sync"
"time"
"golang.org/x/mobile/audio/al"
"golang.org/x/mobile/exp/audio/al"
)
// ReadSeekCloser is an io.ReadSeeker and io.Closer.