Package org.jouvieje.fmodex.structures

Examples of org.jouvieje.fmodex.structures.FMOD_CREATESOUNDEXINFO


   
        private Sound sound;
       
        public FmodSound(ByteBuffer buffer) throws SoundSystemException {
            sound = new Sound();
            FMOD_CREATESOUNDEXINFO exinfo = FMOD_CREATESOUNDEXINFO.allocate();
            exinfo.setLength(buffer.capacity());
            errorCheck(system.createSound(buffer, FMOD_MODE.FMOD_SOFTWARE | FMOD_MODE.FMOD_OPENMEMORY, exinfo, sound));
        }
View Full Code Here

TOP

Related Classes of org.jouvieje.fmodex.structures.FMOD_CREATESOUNDEXINFO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.