diff options
author | Sven Gothel <sgothel@jausoft.com> | 2023-05-18 06:15:32 +0200 |
---|---|---|
committer | Sven Gothel <sgothel@jausoft.com> | 2023-05-18 06:15:32 +0200 |
commit | 7f73d50c90d05cf7388f23977ca956a4933019ad (patch) | |
tree | 1e14df61266798b9276e71290e5acc8844bfc260 /src/java/com/jogamp/openal/sound3d/Vec3f.java | |
parent | 2e800ac4277d6234cb9dba2afe01a4d8c75fc989 (diff) |
Sound3D: Make all OO wrapper fully transparent and stand-alone, allow mix-and-match; Align Context makeCurrent/release w/ ALAudioSink ...
Align Context makeCurrent/release w/ ALAudioSink
- use ALC_EXT_thread_local_context if available
- use a recursive lock
- same release method as makeCurrent
- ALC_EXT_thread_local_context or traditional
- destroy also releases the context and fully unwinds lock
Diffstat (limited to 'src/java/com/jogamp/openal/sound3d/Vec3f.java')
-rw-r--r-- | src/java/com/jogamp/openal/sound3d/Vec3f.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/com/jogamp/openal/sound3d/Vec3f.java b/src/java/com/jogamp/openal/sound3d/Vec3f.java index 8112a15..92855b0 100644 --- a/src/java/com/jogamp/openal/sound3d/Vec3f.java +++ b/src/java/com/jogamp/openal/sound3d/Vec3f.java @@ -1,4 +1,5 @@ /** +* Copyright (c) 2010-2023 JogAmp Community. All rights reserved. * Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without @@ -34,7 +35,7 @@ package com.jogamp.openal.sound3d; /** - * A onvenience class representing a 3-element float vector + * A convenience class representing a 3-element float vector * * @author Athomas Goldberg */ |