Giter Site home page Giter Site logo

gideros / gideros Goto Github PK

View Code? Open in Web Editor NEW
546.0 63.0 114.0 440.84 MB

Gideros Release version

C++ 17.66% C 63.01% NSIS 0.01% Java 2.00% Shell 2.65% Makefile 1.73% CMake 0.07% QMake 0.14% Objective-C 1.45% Objective-C++ 0.77% Python 0.01% HTML 4.51% CSS 0.08% Lua 3.54% JavaScript 1.68% PHP 0.01% Perl 0.48% Batchfile 0.15% GLSL 0.03% HLSL 0.02%
game game-development game-engine game-2d cross-platform lua

gideros's Introduction

Gideros Cross-Platform Development Environment

GitHub release Github Releases Github All Releases Twitter Follow GitHub stars

Gideros

Gideros is a cross-platform development environment for creating amazing games and interactive applications in 2D or 3D. It is easy to pick up, quick to develop and robust to deploy. Code your game once and deploy to Android, iOS, MacOS, tvOS, Windows, HTML 5 and more.

Benefits

  • Free: Gideros is an open source project. It is completely free for personal and commercial projects.
  • Instant testing: While developing your game, it can be tested on a real device through Wifi in only 1 second – you don’t waste your time with an export or deploy process.
  • Native speed: Developed on top of C/C++ and OpenGL or Metal, your game runs at native speed and fully utilizes the power of CPUs and GPUs underneath.
  • Full development set: Get everything you need from the start, including a lightweight IDE, players for Desktop and mobile devices as well as tools to manage your assets (Texture Packer, Font Creator).
  • Cross-platform: Apart from supporting multiple platforms, Gideros also provides automatic screen scaling and automatic selection of proper image resolution, which makes supporting different screen resolutions, aspect ratios and universal projects an easy task.
  • Extensive plugins You can easily extend the core with plugins. Import your existing (C, C++, Java or Obj-C) code, bind to Lua and interpret them directly. Dozens of open-source plugins are already developed and ready to use: ads, in-app purchases, physics for 2d or 3d, Steam integration and many more.
  • Fast development Easy learning curve, instant testing and the ability to create custom native plugins reduces development time.
  • Clean OOP approach Gideros provides its own class system on top of Lua with all the basic OOP standards, enabling you to write clean and reusable code for any of your future games.
  • Well-established API Gideros is a mature software with years of development on its back and is influenced by the Flash API - as such it will be instantly familiar to seasoned developers and newcomers.

Example code

Gideros uses Lua as its scripting language. It is a fast and friendly language which is well established in the world of game development.

Displaying an image

To display an image, we first create the Texture object with its reference to an image file and an optional boolean parameter which indicates if the image should be anti-aliased. Then we create a Bitmap object with our Texture, position it at coordinates (100, 100) and add it to the stage, which is the main container for all objects that should be drawn on screen.

local tex = Texture.new("images/ball.png", true)
local bmp = Bitmap.new(tex)
bmp:setPosition(100, 100)
stage:addChild(bmp)

Drawing a custom shape

Gideros provides an API for drawing custom shapes. In this example we use a solid red color with a solid fill and a 5px-wide blue line with a fully opaque border. Easy, isn't it?

local shape = Shape.new()
shape:setFillStyle(Shape.SOLID, 0xff0000) -- RGB-color red
shape:setLineStyle(5, 0x0000ff, 1)
shape:beginPath()
shape:moveTo(0,0)
shape:lineTo(0, 100)
shape:lineTo(100, 100)
shape:lineTo(100, 0)
shape:lineTo(0, 0)
shape:endPath()
shape:setPosition(200, 100)
stage:addChild(shape)

Where to start?

  • Introduction: Everything from creating your first project and running it on device, to the basic concepts of OOP, File system and Events. A must read for all new Developers.
  • Reference Guide: API information about every class, method, event, property and plugin available in Gideros with examples of how to use them. Bookmark it, you'll be using it a lot.
  • Gideros Wiki: The Gideros Wiki, containing a wealth of information with links to tutorials, community contributed classes and code snippets and tips and tricks on how to develop with Gideros.
  • Everything else... Even more developer related documentation...

Join the Gideros community

Gideros has an active, friendly community. We have a lively, helpful team of Gideros experts, users and newcomers discussing the future of Gideros and games development. Join us here

gideros's People

Contributors

acalatrava avatar alexzheng avatar anthonyball1966 avatar apollo144 avatar apolunin avatar ar2rsawseen avatar atilimcetin avatar atillafer avatar bryant1410 avatar bugcaptor avatar flashjaysan avatar gorkem-cetin avatar hgy29 avatar hitonn avatar john-blackburn avatar keszegh avatar logikstate avatar lsouchet avatar luonghuutinh avatar marceloadsj avatar marynate avatar mokalux avatar multipain avatar nlcke avatar opentor avatar paul-reilly avatar perrochon avatar tcaesvk avatar tkhnoman avatar totebo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

gideros's Issues

bring to front

antix:
What would be totally fantastic however is if when you press the play button in Gideros Studio, and if the player is on the local machine then it brings the player window to the front.

Implement x,y properties likes setPosition

Can we implement Sprite x and y properties likes other LUA engines (Love, Corona) so we can change position by assign them:

player.x , player.y = 100,100
is as same as:
player:setPosition(100,100)

and local x,y = player.x , player.y
is as same as:
player:getPosition()

This will make we convert source code from other LUA engines to Gideros more convenience!

ogl2 possible improvements required

By making these improvements:

remove 1.0 limit for rgb multiplier
alpha level for each cell in a tilemap
rgb multiplier for each cell in a tilemap‏

It will make writing arcade games using Gideros much easier as it will then allow maps containing nice alpha and lighting effects, it will also allow sprites to flash to complete white, red, etc...
https://github.com/gideros/gideros/labels

Black area on screen

On the latest version, Android, if you slide the system controls (the 3 android virtual buttons) in they are overlayed on the main game screen. If you pick the 3rd one - to see the task list, then reselect the game then it has a black area on the screen where the buttons slid in.

fit giderosplayer window to app

there should be a button/short-cut to achieve the opposite of fit to window, i.e. to fit window size to the exact size of the app. in old giderosplayer that was possible as shrinking as much as possible the player one could achieve this, but now the player can be shrinked as small as you want (which otherwise is a good thing), so this 'feature' is lost.

Local Player crashes on MacBookPro Retina

Process: Gideros Player [699]
Path: /Temp/*/Gideros Player.app/Contents/MacOS/Gideros Player
Identifier: com.appcodingeasy.Gideros Player
Version: ???
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Gideros Player [699]
User ID: 501

Date/Time: 2015-02-28 16:48:55.586 +0000
OS Version: Mac OS X 10.10.2 (14C109)
Report Version: 11
Anonymous UUID: 756E5234-55F4-8973-8391-3CB82EB2A785

Time Awake Since Boot: 870 seconds

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_ARITHMETIC (SIGFPE)
Exception Codes: EXC_I386_DIV (divide by zero)

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 com.appcodingeasy.Gideros Player 0x000000010bf0d94f Application::renderScene(int) + 191
1 com.appcodingeasy.Gideros Player 0x000000010be9a741 GLCanvas::paintGL() + 369
2 org.qt-project.QtOpenGL 0x000000010c23c37e QGLWidget::glDraw() + 414
3 org.qt-project.QtOpenGL 0x000000010c23bd66 QGLWidget::paintEvent(QPaintEvent_) + 38
4 org.qt-project.QtWidgets 0x000000010c3004bb QWidget::event(QEvent_) + 2123
5 org.qt-project.QtWidgets 0x000000010c2c0dbb QApplicationPrivate::notify_helper(QObject_, QEvent_) + 251
6 org.qt-project.QtWidgets 0x000000010c2c4110 QApplication::notify(QObject_, QEvent_) + 8192
7 org.qt-project.QtCore 0x000000010d05afb3 QCoreApplication::notifyInternal(QObject_, QEvent_) + 115
8 org.qt-project.QtWidgets 0x000000010c2f9c20 QWidgetPrivate::drawWidget(QPaintDevice_, QRegion const&, QPoint const&, int, QPainter_, QWidgetBackingStore_) + 3152
9 org.qt-project.QtWidgets 0x000000010c2ce3b7 QWidgetPrivate::repaint_sys(QRegion const&) + 391
10 org.qt-project.QtWidgets 0x000000010c2f0900 QWidgetPrivate::syncBackingStore() + 112
11 org.qt-project.QtWidgets 0x000000010c300784 QWidget::event(QEvent_) + 2836
12 org.qt-project.QtWidgets 0x000000010c2c0dbb QApplicationPrivate::notify_helper(QObject_, QEvent_) + 251
13 org.qt-project.QtWidgets 0x000000010c2c4110 QApplication::notify(QObject_, QEvent_) + 8192
14 org.qt-project.QtCore 0x000000010d05bc8b QCoreApplicationPrivate::sendPostedEvents(QObject_, int, QThreadData_) + 971
15 libqcocoa.dylib 0x000000000d80f1be 0xd7ee000 + 135614
16 com.apple.CoreFoundation 0x00007fff86a96da7 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION + 23
17 com.apple.CoreFoundation 0x00007fff86a96d00 __CFRunLoopDoObservers + 368
18 com.apple.CoreFoundation 0x00007fff86a8883f CFRunLoopRunSpecific + 271
19 com.apple.HIToolbox 0x00007fff83e1daef RunCurrentEventLoopInMode + 235
20 com.apple.HIToolbox 0x00007fff83e1d76e ReceiveNextEventCommon + 179
21 com.apple.HIToolbox 0x00007fff83e1d6ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
22 com.apple.AppKit 0x00007fff90545f81 _DPSNextEvent + 964
23 com.apple.AppKit 0x00007fff90545730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
24 com.apple.AppKit 0x00007fff90539593 -[NSApplication run] + 594
25 libqcocoa.dylib 0x000000000d80e92d 0xd7ee000 + 133421
26 org.qt-project.QtCore 0x000000010d0585ad QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) + 381
27 org.qt-project.QtCore 0x000000010d05b58a QCoreApplication::exec() + 346
28 com.appcodingeasy.Gideros Player 0x000000010be8b119 main + 1289
29 com.appcodingeasy.Gideros Player 0x000000010be8ac04 start + 52

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8f844232 kevent64 + 10
1 libdispatch.dylib 0x00007fff85630a6a _dispatch_mgr_thread + 52

Thread 2:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 3:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 6:: Qt bearer thread
0 libsystem_kernel.dylib 0x00007fff8f8433fa select + 10
1 org.qt-project.QtCore 0x000000010d0abf48 qt_safe_select(int, fd_set
, fd_set
, fd_set_, timespec const_) + 104
2 org.qt-project.QtCore 0x000000010d0ad000 QEventDispatcherUNIXPrivate::doSelect(QFlagsQEventLoop::ProcessEventsFlag, timespec*) + 672
3 org.qt-project.QtCore 0x000000010d0ae0ca QEventDispatcherUNIX::processEvents(QFlagsQEventLoop::ProcessEventsFlag) + 234
4 org.qt-project.QtCore 0x000000010d0585ad QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) + 381
5 org.qt-project.QtCore 0x000000010ce4d905 QThread::exec() + 117
6 org.qt-project.QtCore 0x000000010ce51393 0x10ce1d000 + 213907
7 libsystem_pthread.dylib 0x00007fff85ddd268 _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff85ddd1e5 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff85ddb41d thread_start + 13

Thread 7:: com.apple.audio.IOThread.client
0 libsystem_kernel.dylib 0x00007fff8f83e4de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8f83d64f mach_msg + 55
2 com.apple.audio.CoreAudio 0x00007fff8fd2f980 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t_, bool, unsigned int) + 98
3 com.apple.audio.CoreAudio 0x00007fff8fd2f90e HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
4 com.apple.audio.CoreAudio 0x00007fff8fd2df60 HALC_ProxyIOContext::IOWorkLoop() + 952
5 com.apple.audio.CoreAudio 0x00007fff8fd2db0e HALC_ProxyIOContext::IOThreadEntry(void_) + 88
6 com.apple.audio.CoreAudio 0x00007fff8fd2d9eb HALB_IOThread::Entry(void*) + 157
7 libsystem_pthread.dylib 0x00007fff85ddd268 _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff85ddd1e5 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff85ddb41d thread_start + 13

Thread 8:
0 libsystem_kernel.dylib 0x00007fff8f84348a __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff89cf9e50 usleep + 54
2 libgid.1.dylib 0x000000010c04e2db 0x10c032000 + 115419
3 libsystem_pthread.dylib 0x00007fff85ddd268 _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff85ddd1e5 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff85ddb41d thread_start + 13

Thread 9:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 10:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 11:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 12:
0 libsystem_kernel.dylib 0x00007fff8f84394a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff85ddb40d start_wqthread + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000140 rbx: 0x00007fff53d79c98 rcx: 0x00000000000001e0 rdx: 0x0000000000000000
rdi: 0x00007fe226003f30 rsi: 0x0000000000000000 rbp: 0x00007fff53d79c60 rsp: 0x00007fff53d79bf0
r8: 0x0000000000002100 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000011d08000
r12: 0x00007fe222532ae0 r13: 0xffffffffffffffff r14: 0x00007fe222413270 r15: 0x00000000ffffffff
rip: 0x000000010bf0d94f rfl: 0x0000000000010203 cr2: 0x000000001402b000

Logical CPU: 6
Error Code: 0x00000000
Trap Number: 0

Binary Images:
0xd7ee000 - 0xd894ff7 +libqcocoa.dylib (0) <0E14D8CF-372E-3B84-BD10-730A617933ED> /Temp//Gideros Player.app/Contents/PlugIns/platforms/libqcocoa.dylib
0xd8cc000 - 0xd900fff +org.qt-project.QtPrintSupport (5.4 - 5.4.0) /Temp/
/Gideros Player.app/Contents/Frameworks/QtPrintSupport.framework/Versions/5/QtPrintSupport
0xdc09000 - 0xdc0bfff +bitop.dylib (1) /Temp//bitop.dylib
0x111b1000 - 0x111c7fff +libqcorewlanbearer.dylib (0) /Temp/
/Gideros Player.app/Contents/PlugIns/bearer/libqcorewlanbearer.dylib
0x111cf000 - 0x111d8ff7 +libqgenericbearer.dylib (0) <59576EA5-9F93-3F1E-AFD6-E1DE1A5849A5> /Temp//Gideros Player.app/Contents/PlugIns/bearer/libqgenericbearer.dylib
0x11205000 - 0x1141ffff com.apple.audio.units.Components (1.12 - 1.12) <95245456-EE5C-3D29-8E18-5E02E74A2683> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x114da000 - 0x114defff com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x114e3000 - 0x1153aff7 +de.access-music.virus_ti.util.hal (3.0.2) <065324B3-5FBD-3BF7-B882-BF4CEC454524> /Library/Audio/Plug-Ins/HAL/de.access-music.virus_ti.plugin/Contents/MacOS/de.access-music.virus_ti
0x11797000 - 0x1179cff7 +json.dylib (1) /Temp/
/json.dylib
0x117a0000 - 0x117a3fff +lfs.dylib (1) <7556B039-7BDC-3227-A2C8-04686EFA003E> /Temp//lfs.dylib
0x117a6000 - 0x11867fff +lsqlite3.dylib (1) <40155E0A-43C3-3291-BC43-798C3F7BEC09> /Temp/
/lsqlite3.dylib
0x11879000 - 0x11882ff7 +luasocket.dylib (1) <7556A0A0-755E-3520-8F23-B373A060BE6F> /Temp//luasocket.dylib
0x11887000 - 0x1188cff7 +microphone.dylib (1) <04108609-8BAA-359B-B9B8-4D3B90223745> /Temp/
/microphone.dylib
0x11891000 - 0x11895ff7 +libqtga.dylib (0) <966B3471-4146-38F6-8A10-BD76A2D777DD> /Temp//Gideros Player.app/Contents/PlugIns/imageformats/libqtga.dylib
0x120ee000 - 0x120f8ff7 +libqdds.dylib (0) /Temp/
/Gideros Player.app/Contents/PlugIns/imageformats/libqdds.dylib
0x120fd000 - 0x12103ff7 +libqgif.dylib (0) <250B1CA5-F99B-39A2-805C-AAAC06C0C6E2> /Temp//Gideros Player.app/Contents/PlugIns/imageformats/libqgif.dylib
0x12107000 - 0x1210ffff +libqicns.dylib (0) <3D4B42E5-089C-3F52-A385-04B9B33C4F79> /Temp/
/Gideros Player.app/Contents/PlugIns/imageformats/libqicns.dylib
0x12114000 - 0x1211aff7 +libqico.dylib (0) /Temp//Gideros Player.app/Contents/PlugIns/imageformats/libqico.dylib
0x1211f000 - 0x12123ff7 +libqwbmp.dylib (0) <33F650B7-4D25-3C03-99C5-F9EB15D5DD67> /Temp/
/Gideros Player.app/Contents/PlugIns/imageformats/libqwbmp.dylib
0x1256a000 - 0x125f1fff +libqjp2.dylib (0) /Temp//Gideros Player.app/Contents/PlugIns/imageformats/libqjp2.dylib
0x12600000 - 0x1263eff7 +libqjpeg.dylib (0) <40EC7154-BC74-3B13-8602-5F7BDCCA78BB> /Temp/
/Gideros Player.app/Contents/PlugIns/imageformats/libqjpeg.dylib
0x12644000 - 0x12694ff7 +libqmng.dylib (0) <789B494F-6392-3402-B444-ABFA2BBB2B69> /Temp//Gideros Player.app/Contents/PlugIns/imageformats/libqmng.dylib
0x1269c000 - 0x126feff7 +libqtiff.dylib (0) <5B0E4033-6B03-3390-AAC1-1B3B68E4D066> /Temp/
/Gideros Player.app/Contents/PlugIns/imageformats/libqtiff.dylib
0x12706000 - 0x1275ffff +libqwebp.dylib (0) /Temp//Gideros Player.app/Contents/PlugIns/imageformats/libqwebp.dylib
0x141e1000 - 0x141e1fef +cl_kernels (???) <8B87AF34-1B1F-4DC3-8029-90875EC8465A> cl_kernels
0x141ef000 - 0x141effe7 +cl_kernels (???) cl_kernels
0x141f1000 - 0x142d7fef unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x10be84000 - 0x10bf8fff7 +com.appcodingeasy.Gideros Player (???) /Temp/
/Gideros Player.app/Contents/MacOS/Gideros Player
0x10bff7000 - 0x10c01dff7 com.apple.audio.OpenAL (1.8 - 1.8) /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
0x10c032000 - 0x10c0a2ff7 +libgid.1.dylib (1) /Temp//Gideros Player.app/Contents/Frameworks/libgid.1.dylib
0x10c0ca000 - 0x10c0d3ff7 +libgvfs.1.dylib (1) <552F3729-3D53-3FBE-8A93-BACE223E512B> /Temp/
/Gideros Player.app/Contents/Frameworks/libgvfs.1.dylib
0x10c0da000 - 0x10c115fff +liblua.1.dylib (1) <980297A0-07C5-3502-AC78-4221FEEB95D1> /Temp//Gideros Player.app/Contents/Frameworks/liblua.1.dylib
0x10c124000 - 0x10c12cff7 +libgideros.1.dylib (1) <415B420B-1BC7-3BBD-A36C-5749DF43F154> /Temp/
/Gideros Player.app/Contents/Frameworks/libgideros.1.dylib
0x10c138000 - 0x10c145fff +libpystring.1.dylib (1) /Temp//Gideros Player.app/Contents/Frameworks/libpystring.1.dylib
0x10c150000 - 0x10c17dfff +libGLEW.1.11.0.dylib (0) <89D80B81-B617-3AC6-AFFC-0E00AA1C4D66> /Temp/
/Gideros Player.app/Contents/Frameworks/libGLEW.1.11.0.dylib
0x10c1b4000 - 0x10c221fef +libfreetype.6.dylib (0) /Temp//Gideros Player.app/Contents/Frameworks/libfreetype.6.dylib
0x10c231000 - 0x10c26ffff +org.qt-project.QtOpenGL (5.4 - 5.4.0) /Temp/
/Gideros Player.app/Contents/Frameworks/QtOpenGL.framework/Versions/5/QtOpenGL
0x10c28f000 - 0x10c798fff +org.qt-project.QtWidgets (5.4 - 5.4.0) <4A22C249-53F8-3F10-83FC-C73889BEC7CC> /Temp//Gideros Player.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets
0x10c8d0000 - 0x10cd42ff7 +org.qt-project.QtGui (5.4 - 5.4.0) <44BF6792-F320-3D06-BC00-C2A8B8949260> /Temp/
/Gideros Player.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui
0x10ce1d000 - 0x10d325ff7 +org.qt-project.QtCore (5.4 - 5.4.0) <906D5182-AD27-30AB-A012-96E0A71D8266> /Temp//Gideros Player.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore
0x10d3b5000 - 0x10d4caff7 +org.qt-project.QtNetwork (5.4 - 5.4.0) <8FF0244B-2E0D-3108-A493-629C9A728AD5> /Temp/
/Gideros Player.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork
0x10d506000 - 0x10d50afff com.apple.agl (3.3.0 - AGL-3.3.0) <8DEEE0ED-5B8C-3B37-AF85-D82A0E207B83> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x10d518000 - 0x10d5bdfff +libstdc++.6.dylib (0) <8E9894B0-0184-3426-85DF-81E80E10FD31> /Temp//Gideros Player.app/Contents/Frameworks/libstdc++.6.dylib
0x10d63c000 - 0x10d65fff7 +libpng16.16.dylib (0) <1BDCB54F-A20A-3AC6-B4B7-461FD691B9D1> /Temp/
/Gideros Player.app/Contents/Frameworks/libpng16.16.dylib
0x10d667000 - 0x10d693fff +libjpeg.8.dylib (0) /Temp//Gideros Player.app/Contents/Frameworks/libjpeg.8.dylib
0x10d698000 - 0x10d6acff7 +libgcc_s.1.dylib (0) <773B2F8D-8610-31C1-803D-2D8309BC5474> /Temp/
/Gideros Player.app/Contents/Frameworks/libgcc_s.1.dylib
0x123400000000 - 0x123400497ff7 com.apple.driver.AppleIntelHD4000GraphicsGLDriver (10.2.46 - 10.0.2) /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsGLDriver
0x123440000000 - 0x123440864fff com.apple.GeForceGLDriver (10.2.1 - 10.0.2) <9E2BE857-9242-330A-AA6F-102FB3214F34> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
0x7fff67fe6000 - 0x7fff6801c837 dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
0x7fff81aa8000 - 0x7fff81aa8fff libOpenScriptingUtil.dylib (162) /usr/lib/libOpenScriptingUtil.dylib
0x7fff81ac0000 - 0x7fff81ac4fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff81af7000 - 0x7fff8234effb com.apple.CoreGraphics (1.600.0 - 775.16) <864C1845-C41E-314C-A3B4-438DC39E5FBC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff82e9d000 - 0x7fff82ea7ff7 com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff82ebe000 - 0x7fff82f40fff com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff8313a000 - 0x7fff83189ff7 com.apple.opencl (2.4.2 - 2.4.2) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8318a000 - 0x7fff831b4fff GLRendererFloat (11.1.1) <53C3F7C6-CC53-3287-9853-DA46FA7587E7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff832a1000 - 0x7fff832b8ff7 libLinearAlgebra.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff838ba000 - 0x7fff83921ff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff83922000 - 0x7fff83950fff com.apple.CoreServicesInternal (221.2.2 - 221.2.2) <16F7A7F1-CF1D-35AD-A91F-690A814048DF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff83954000 - 0x7fff83961ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8397c000 - 0x7fff83996ff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff83997000 - 0x7fff839c7fff com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff839c8000 - 0x7fff839cafff libRadiance.dylib (1232) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff83a50000 - 0x7fff83a51fff liblangid.dylib (117) /usr/lib/liblangid.dylib
0x7fff83a5c000 - 0x7fff83b74ffb com.apple.CoreText (352.0 - 454.3) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff83b79000 - 0x7fff83cb6fff com.apple.ImageIO.framework (3.3.0 - 1232) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff83dbe000 - 0x7fff83dc6ff7 com.apple.icloud.FindMyDevice (1.0 - 1) /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff83dce000 - 0x7fff83dcffff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff83def000 - 0x7fff840f3ffb com.apple.HIToolbox (2.1.1 - 757.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff840f4000 - 0x7fff84126ff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff84127000 - 0x7fff84176ff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
0x7fff84177000 - 0x7fff84179ff7 com.apple.securityhi (9.0 - 55006) <1F40ECF1-6AEF-3E64-9DAD-ADC646CCEA98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff8417a000 - 0x7fff8417fffb libheimdal-asn1.dylib (398.10.1) /usr/lib/libheimdal-asn1.dylib
0x7fff8420f000 - 0x7fff8421efff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff8421f000 - 0x7fff84312ff7 libJP2.dylib (1232) <10B78725-0B8A-3D87-B2E3-8FEED0C07F21> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff84313000 - 0x7fff843ceff7 com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff843cf000 - 0x7fff843cffff com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff843d6000 - 0x7fff8441fff3 com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff84439000 - 0x7fff8443bfff com.apple.OAuth (25 - 25) /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff8443c000 - 0x7fff84488ff7 com.apple.corelocation (1486.17 - 1615.21.1) /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff844cc000 - 0x7fff84507fff com.apple.QD (301 - 301) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff845c5000 - 0x7fff845cdffb com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff845ce000 - 0x7fff845cefff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff845cf000 - 0x7fff845e8fff com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff845f8000 - 0x7fff8461dff7 libPng.dylib (1232) <6E72AE55-AFB0-3FC4-80B2-EBC3353436B7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff84b88000 - 0x7fff84b8cfff libCoreVMClient.dylib (79) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff84b8d000 - 0x7fff84ba1ff7 com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff84bad000 - 0x7fff84bafff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
0x7fff84bd5000 - 0x7fff84bf2ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff84bf3000 - 0x7fff84c1eff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff84d38000 - 0x7fff84d38fff com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff84da0000 - 0x7fff84e60fff com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff850de000 - 0x7fff85107ffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib
0x7fff85108000 - 0x7fff85538fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff85539000 - 0x7fff8562bff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff8562c000 - 0x7fff85656ff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff85657000 - 0x7fff85660fff libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff85b8b000 - 0x7fff85cf6ff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff85d39000 - 0x7fff85d79ff7 libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff85d7a000 - 0x7fff85d82fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff85d83000 - 0x7fff85d9dff3 com.apple.Ubiquity (1.3 - 313) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff85d9e000 - 0x7fff85dd6ffb libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
0x7fff85dd7000 - 0x7fff85dd9ff7 libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
0x7fff85dda000 - 0x7fff85de3fff libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
0x7fff85de4000 - 0x7fff85dfefff com.apple.AppleVPAFramework (1.2.10 - 1.2.10) /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff85dff000 - 0x7fff85e27fff libsystem_info.dylib (459) /usr/lib/system/libsystem_info.dylib
0x7fff85f1f000 - 0x7fff85f2aff7 libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
0x7fff85f2b000 - 0x7fff85f41ff7 libsystem_asl.dylib (267) /usr/lib/system/libsystem_asl.dylib
0x7fff85f4a000 - 0x7fff85fbeff3 com.apple.securityfoundation (6.0 - 55126) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff85fd4000 - 0x7fff86001fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff86002000 - 0x7fff86003fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff86013000 - 0x7fff86018fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff86056000 - 0x7fff8609cff7 libauto.dylib (186) /usr/lib/libauto.dylib
0x7fff8609d000 - 0x7fff860c8fff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff86215000 - 0x7fff8622fff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff86230000 - 0x7fff86230fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff86231000 - 0x7fff8623fff7 com.apple.opengl (11.1.1 - 11.1.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff86240000 - 0x7fff86573fff libmecabra.dylib (666.2) /usr/lib/libmecabra.dylib
0x7fff8657f000 - 0x7fff869d2fc7 com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff869d3000 - 0x7fff869ddff7 com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff869de000 - 0x7fff86a16fff com.apple.RemoteViewServices (2.0 - 99) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff86a17000 - 0x7fff86dadfff com.apple.CoreFoundation (6.9 - 1152) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff86dd3000 - 0x7fff86df9ff7 com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff86dfa000 - 0x7fff86e1afff com.apple.IconServices (47.1 - 47.1) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff86e49000 - 0x7fff86e6cfff com.apple.Sharing (328.3.2 - 328.3.2) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff86e6d000 - 0x7fff86e7aff7 libxar.1.dylib (254) /usr/lib/libxar.1.dylib
0x7fff86e7b000 - 0x7fff86e7bff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff86e7c000 - 0x7fff86e98ff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff86e99000 - 0x7fff86f3bff7 com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff86f41000 - 0x7fff86f4cfff libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff871ab000 - 0x7fff871b1fff libsystem_trace.dylib (72.1.3) /usr/lib/system/libsystem_trace.dylib
0x7fff871b2000 - 0x7fff871b2fff com.apple.Cocoa (6.8 - 21) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff871e2000 - 0x7fff87392ff7 com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff87393000 - 0x7fff87395fff libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
0x7fff8743f000 - 0x7fff87515ff3 com.apple.DiskImagesFramework (10.10.1 - 396) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff87518000 - 0x7fff8751cfff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff8751d000 - 0x7fff8751dfff com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff8751e000 - 0x7fff8762cfff com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff87738000 - 0x7fff8773efff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff8773f000 - 0x7fff8775efff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff8775f000 - 0x7fff87762ff7 libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
0x7fff87763000 - 0x7fff8777eff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib
0x7fff877dc000 - 0x7fff87822ffb libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff88345000 - 0x7fff88393fff libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
0x7fff88394000 - 0x7fff883a6fff libsasl2.2.dylib (193) /usr/lib/libsasl2.2.dylib
0x7fff883a7000 - 0x7fff883acff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff883ad000 - 0x7fff883bdff7 libbsm.0.dylib (34) /usr/lib/libbsm.0.dylib
0x7fff883be000 - 0x7fff8844fff7 com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff88450000 - 0x7fff88464ff7 com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff88465000 - 0x7fff88495fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff8857b000 - 0x7fff885c8ff3 com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff885c9000 - 0x7fff8865eff7 com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8865f000 - 0x7fff88662fff com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff88663000 - 0x7fff88665fff com.apple.EFILogin (2.0 - 2) <39895ACB-E756-342C-ABE5-DB7100EF0A69> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff8867a000 - 0x7fff889a8fff com.apple.Foundation (6.9 - 1152.14) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff892a8000 - 0x7fff892c4fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff89321000 - 0x7fff8939efff com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8939f000 - 0x7fff893b1ff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff895d1000 - 0x7fff895dcff7 libcsfde.dylib (471.10.6) /usr/lib/libcsfde.dylib
0x7fff89610000 - 0x7fff8967effb com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff896f8000 - 0x7fff89770ff7 com.apple.SystemConfiguration (1.14 - 1.14) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff897c4000 - 0x7fff897cfff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff897d0000 - 0x7fff89900fff com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff899cb000 - 0x7fff899dcff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff899dd000 - 0x7fff89a6eff7 libCoreStorage.dylib (471.10.6) <892DEEE7-C8C7-35EA-931D-FF9862BDEB2B> /usr/lib/libCoreStorage.dylib
0x7fff89a6f000 - 0x7fff89abbff7 libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
0x7fff89abc000 - 0x7fff89bdeff7 com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff89c31000 - 0x7fff89c3aff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff89c3b000 - 0x7fff89c40ff7 libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
0x7fff89c7b000 - 0x7fff89d07ff7 libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
0x7fff89d08000 - 0x7fff89d63fff libTIFF.dylib (1232) <29A5C7F7-D50B-35B3-8FA2-A55A47E497A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff89d9a000 - 0x7fff89e8efff libFontParser.dylib (134.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff89e8f000 - 0x7fff89e96fff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff89e97000 - 0x7fff89ec4fff com.apple.Accounts (113 - 113) <990F0F61-6AC5-3076-932E-02A9A7F75AC4> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff89ec5000 - 0x7fff89f34fff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff89f35000 - 0x7fff89fd3fff com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff89fd4000 - 0x7fff89fd4ff7 liblaunch.dylib (559.10.3) /usr/lib/system/liblaunch.dylib
0x7fff89ff4000 - 0x7fff8a015fff com.apple.framework.Apple80211 (10.1 - 1010.64) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff8a071000 - 0x7fff8a08bff7 libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
0x7fff8a5b7000 - 0x7fff8a67aff7 libvMisc.dylib (516) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff8a67b000 - 0x7fff8af03ff7 libclh.dylib (4.0.3 - 4.0.3) <5041EEED-0356-3302-861F-526709ACA871> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
0x7fff8af04000 - 0x7fff8b17fff7 com.apple.CoreData (111 - 526.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8b180000 - 0x7fff8b188ffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff8b18b000 - 0x7fff8b19eff7 com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff8b1c2000 - 0x7fff8b1c2ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff8b1c3000 - 0x7fff8b1c5ffb libCGXType.A.dylib (775.16) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8b1c6000 - 0x7fff8b1cafff com.apple.IOAccelerator (156.6 - 156.6) <2E9140C3-D648-3C7D-9971-CED74FE42456> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff8b1cb000 - 0x7fff8b37afff GLEngine (11.1.1) <72892F1E-5ED5-3733-BE77-FC37CF69D801> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fff8b444000 - 0x7fff8b485fff libGLU.dylib (11.1.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8b486000 - 0x7fff8b48aff7 libGIF.dylib (1232) <061D5354-FE4F-3C7E-B563-99DC0198062D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8b597000 - 0x7fff8b6aefe7 libvDSP.dylib (516) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff8b6af000 - 0x7fff8b6c8ff7 com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff8b6d5000 - 0x7fff8b8baff3 libicucore.A.dylib (531.31) /usr/lib/libicucore.A.dylib
0x7fff8b9bc000 - 0x7fff8ba28fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff8ba29000 - 0x7fff8ba83ff7 com.apple.LanguageModeling (1.0 - 1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff8be3c000 - 0x7fff8bf64ff7 com.apple.coreui (2.1 - 305.6.1) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8bf76000 - 0x7fff8bfb6ff7 com.apple.CloudDocs (1.0 - 280.6) /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff8bfb7000 - 0x7fff8bfd2ff7 com.apple.aps.framework (4.0 - 4.0) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff8bfd3000 - 0x7fff8bfd3fff com.apple.Accelerate (1.10 - Accelerate 1.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8c360000 - 0x7fff8c371fff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff8c372000 - 0x7fff8c378ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff8c379000 - 0x7fff8c5e1ff3 com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff8c5e2000 - 0x7fff8c5f4ff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff8c5f5000 - 0x7fff8c8dcffb com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8c8e2000 - 0x7fff8c941ff3 com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff8c942000 - 0x7fff8ca84fff libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
0x7fff8cb61000 - 0x7fff8cb62ff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff8cb63000 - 0x7fff8cd5d46f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
0x7fff8cd9a000 - 0x7fff8cda2fe7 libcldcpuengine.dylib (2.4.5) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff8cda3000 - 0x7fff8cda4ff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff8cda5000 - 0x7fff8cddfffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff8cde8000 - 0x7fff8ce10ffb libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff8ce11000 - 0x7fff8ce1aff3 com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff8ce23000 - 0x7fff8cf15fff libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib
0x7fff8d009000 - 0x7fff8d02eff7 libJPEG.dylib (1232) <09466709-4742-3418-A0AC-116EF9714E2D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff8d0a2000 - 0x7fff8d0affff com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff8d0b0000 - 0x7fff8d194fff libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8d378000 - 0x7fff8d37aff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff8d4ae000 - 0x7fff8d4b0ff7 libquarantine.dylib (76) /usr/lib/system/libquarantine.dylib
0x7fff8d529000 - 0x7fff8d52afff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff8de73000 - 0x7fff8dee7fff com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff8dee8000 - 0x7fff8df3cfff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff8df48000 - 0x7fff8df83fff com.apple.Symbolication (1.4 - 56045) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff8df84000 - 0x7fff8df95ff7 libsystem_coretls.dylib (35.1.2) /usr/lib/system/libsystem_coretls.dylib
0x7fff8dfa2000 - 0x7fff8dfa6fff com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff8e029000 - 0x7fff8e036fff com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff8f034000 - 0x7fff8f303ff3 com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8f304000 - 0x7fff8f32ffff com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8f343000 - 0x7fff8f344ffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff8f345000 - 0x7fff8f3acffb com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff8f3ad000 - 0x7fff8f3b4ff7 libcompiler_rt.dylib (35) /usr/lib/system/libcompiler_rt.dylib
0x7fff8f3b5000 - 0x7fff8f3bdff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff8f3be000 - 0x7fff8f3c2fff com.apple.CommonPanels (1.2.6 - 96) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff8f3c3000 - 0x7fff8f3cafff libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff8f3cb000 - 0x7fff8f3ccfff libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
0x7fff8f3d0000 - 0x7fff8f46fdf7 com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff8f48e000 - 0x7fff8f61dfff libGLProgrammability.dylib (11.1.1) <90DE65E5-77DF-3646-B8E8-0462E240800A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff8f61e000 - 0x7fff8f6a7fff com.apple.CoreSymbolication (3.1 - 57020) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff8f6ae000 - 0x7fff8f6baff7 libGPUSupportMercury.dylib (11.1.1) /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff8f6bb000 - 0x7fff8f6c7ff7 com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff8f6f7000 - 0x7fff8f769ff7 com.apple.framework.IOKit (2.0.2 - 1050.10.8) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8f82d000 - 0x7fff8f84afff libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
0x7fff8f84b000 - 0x7fff8f850ff7 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib
0x7fff8f851000 - 0x7fff8f879fff libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
0x7fff8f87a000 - 0x7fff8fc87ff7 libLAPACK.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff8fd07000 - 0x7fff8fd58ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff8fd59000 - 0x7fff8fd5cfff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff8fd5d000 - 0x7fff8ff60ff3 com.apple.CFNetwork (720.2.4 - 720.2.4) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8ff90000 - 0x7fff8ff9bfff libcommonCrypto.dylib (60061) /usr/lib/system/libcommonCrypto.dylib
0x7fff8ff9c000 - 0x7fff8ffa4fff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff8ffa5000 - 0x7fff8ffa7fff libCVMSPluginSupport.dylib (11.1.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff8ffa8000 - 0x7fff90254fff com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff9035c000 - 0x7fff9035efff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff9035f000 - 0x7fff90392ff7 com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff90393000 - 0x7fff90521fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff90522000 - 0x7fff9106cff7 com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff9106d000 - 0x7fff910e3fe7 libcorecrypto.dylib (233.1.2) /usr/lib/system/libcorecrypto.dylib
0x7fff910e4000 - 0x7fff910e7fff com.apple.IOSurface (97 - 97) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff913c4000 - 0x7fff913c6fff com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff9144a000 - 0x7fff91481ffb com.apple.LDAPFramework (2.4.28 - 194.5) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff91482000 - 0x7fff91516fff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 1
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 528
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=240.1M resident=133.9M(56%) swapped_out_or_unallocated=106.2M(44%)
Writable regions: Total=151.1M written=10.6M(7%) resident=32.8M(22%) swapped_out=0K(0%) unallocated=118.3M(78%)

REGION TYPE VIRTUAL
=========== =======
CG backing stores 13.5M
CG image 76K
CG shared images 240K
CoreAnimation 76K
CoreImage 16K
CoreServices 8K
CoreUI image data 164K
Foundation 4K
IOKit 9.9M
Kernel Alloc Once 8K
MALLOC 86.9M
MALLOC (admin) 32K
MALLOC_LARGE (reserved) 12.2M reserved VM address space (unallocated)
Memory Tag 249 156K
OpenCL 16K
STACK GUARD 56.0M
Stack 13.7M
VM_ALLOCATE 17.2M
VM_ALLOCATE (reserved) 36K reserved VM address space (unallocated)
__DATA 27.5M
__GLSLBUILTINS 2588K
__IMAGE 528K
__LINKEDIT 77.0M
__TEXT 163.2M
__UNICODE 544K
mapped file 62.9M
shared memory 68K
=========== =======
TOTAL 544.5M
TOTAL, minus reserved VM space 532.3M

Model: MacBookPro10,1, BootROM MBP101.00EE.B07, 4 processors, Intel Core i7, 2.7 GHz, 16 GB, SMC 2.3f36
Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (7.15.159.13.12)
Bluetooth: Version 4.3.2f6 15235, 3 services, 19 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM512E, 500.28 GB
USB Device: Hub
USB Device: Hub
USB Device: Apple Internal Keyboard / Trackpad
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: Hub
USB Device: FaceTime HD Camera (Built-in)
Thunderbolt Bus: MacBook Pro, Apple Inc., 23.4

Focused window on Desktop

Would be best to fire Event.APPLICATION_BACKGROUND and Event.APPLICATION_FOREGROUND upon window lost focus and get focus.

Or probably Event.APPLICATION_RESUME and Event.APPLICATION_SUSPEND.

Player settings window redundant

The dropdown to select the player works so well that the player settings window is almost redundant.

If 'localhost (127.0.0.1)' was added to the dropdown (just in case there is no network - so no lan ip address) then there would be no need to the window anymore.

[IDE] Clear and search output

I find myself manually looking for "a needle in a haystack" quite a bit when I'm debugging with the output.

If I could clear it, I would at least know the output were only in the last session. Then I could copy and paste all to an external editor and search for that elusive "nil". If search was included I could do it all in the IDE.

png crash on OSX

Gideros Player crashes on Texture.new with report:

Process: Gideros Player [604]
Path: /Applications/Gideros Studio/Gideros Player.app/Contents/MacOS/Gideros Player
Identifier: com.appcodingeasy.Gideros Player
Version: ???
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Gideros Player [604]
User ID: 501

Date/Time: 2015-02-28 23:15:28.783 +0100
OS Version: Mac OS X 10.10.1 (14B25)
Report Version: 11
Anonymous UUID: C1B9C023-A50D-F44A-A511-7C273EB76D0A

Time Awake Since Boot: 4400 seconds

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0000000000000001, 0x0000000000000000

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libpng16.16.dylib 0x000000010fb2cf10 png_sig_cmp + 932
1 libpng16.16.dylib 0x000000010fb34860 png_create_read_struct_2 + 19
2 libpng16.16.dylib 0x000000010fb34847 png_create_read_struct + 27
3 libgid.1.dylib 0x000000010e53b802 gimage_parsePng + 178
4 com.appcodingeasy.Gideros Player 0x000000010e4194fc Dib::Dib(Application_, char const_, bool, bool, bool, unsigned int) + 396
5 com.appcodingeasy.Gideros Player 0x000000010e436323 TextureManager::createTextureFromFile(char const_, TextureParameters const&) + 627
6 com.appcodingeasy.Gideros Player 0x000000010e435eb2 TextureBase::TextureBase(Application_, char const_, Filter, Wrap, Format, bool, unsigned int) + 114
7 com.appcodingeasy.Gideros Player 0x000000010e435d54 Texture::Texture(Application_, char const_, Filter, Wrap, Format, bool, unsigned int) + 36
8 com.appcodingeasy.Gideros Player 0x000000010e40607e TextureBinder::create(lua_State_) + 766
9 liblua.1.dylib 0x000000010e5f3e3f luaD_precall + 623

Move completely to LuaJIT 2.1 (edge)

It looks like compile-link-run works (no actual JIT on iOS x64 or x32).

https://www.freelists.org/post/luajit/luajit-21-for-arm64-without-real-jit-support

LuaJIT 2.1 can run produce and later run it's own bytecode too, so it's a good way of getting past any current problems with the encryption being easy to hack (you export bytecode rather than source code).

LuaJIT will also make it easier to add c libraries as it can interface directly using Lua.

http://luajit.org/ext_ffi.html

Need Application:fitToWindow() [Enhancement]

Due to the weird nature of Application:setFullScreen() and Application:setWindowSize(w, h)
Application:fitToWindow() is a need, or second choice probably that the application automatically fit to window on window resize and setFullScreen.
(Also probably need Application:isFullScreen(), because player might do full screen with Alt+Enter, if the shortcut still attached)

export to android studio

SinisterSoft's idea: It would be best if Gideros export had a tickbox for Android Studio in the export.

[IDE] Editor key bindings on OSX

The usual text editing key combinations don't function in Gideros IDE since v2014.01:

  • Command + ArrowLeft/ArrowRight to jump to the beginning/end of the current line
  • Alt + ArrowLeft/ArrowRight to jump to the beginning of the previous/next word
    In fact, the second combination Alt+Arrows mimics the function of the first, Command + Arrow, so I suppose there's just a wrong link somewhere.

[android] crashing on x86 binaries

03-13 21:39:18.110: I/DEBUG(144): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
03-13 21:39:18.110: I/DEBUG(144): Build fingerprint: 'asus/WW_epad/ME302C:4.3/JSS15Q/WW_epad-V5.0.21-20140701:user/release-keys'
03-13 21:39:18.110: I/DEBUG(144): Revision: '0'
03-13 21:39:18.110: I/DEBUG(144): pid: 3896, tid: 3917, name: Thread-317 >>> com.debia.sostavslova <<<
03-13 21:39:18.110: I/DEBUG(144): signal 11 (SIGSEGV), code 128 (SI_KERNEL), fault addr 00000000
03-13 21:39:18.150: I/DEBUG(144): eax 00000000 ebx 792afb68 ecx 78444760 edx 3f800000
03-13 21:39:18.150: I/DEBUG(144): esi 78444760 edi 83b3f310
03-13 21:39:18.150: I/DEBUG(144): xcs 00000073 xds 0000007b xes 0000007b xfs 00000000 xss 0000007b
03-13 21:39:18.150: I/DEBUG(144): eip 7908df46 ebp 788df010 esp 7bf4e98c flags 00210202
03-13 21:39:18.160: I/DEBUG(144): backtrace:
03-13 21:39:18.160: I/DEBUG(144): #00 pc 000fdf46 /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.160: I/DEBUG(144): #1 pc 000fee09 /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.160: I/DEBUG(144): #2 pc 0010104b /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.160: I/DEBUG(144): #3 pc 00060898 /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.160: I/DEBUG(144): #4 pc 0007c24f /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): #5 pc 000164bf
03-13 21:39:18.160: I/DEBUG(144): #6 pc 000d7dfc /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): #7 pc 00000118 /dev/ashmem/dalvik-jit-code-cache (deleted)
03-13 21:39:18.160: I/DEBUG(144): #8 pc 0008cd61 /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): #9 pc 0010abbe /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): #10 pc 0010af17 /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): #11 pc 000e8e2a /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): #12 pc 0001b55c /system/lib/libc.so
03-13 21:39:18.160: I/DEBUG(144): #13 pc 0003dcb5 /system/lib/libc.so
03-13 21:39:18.160: I/DEBUG(144): #14 pc 000e8a7f /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): stack:
03-13 21:39:18.160: I/DEBUG(144): 7bf4e94c 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e950 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e954 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e958 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e95c 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e960 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e964 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e968 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e96c 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e970 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e974 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e978 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e97c 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e980 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e984 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e988 00000000
03-13 21:39:18.160: I/DEBUG(144): #00 7bf4e98c 7c795000 /dev/ashmem/AudioFlinger::Client (deleted)
03-13 21:39:18.160: I/DEBUG(144): 7bf4e990 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e994 00000001
03-13 21:39:18.160: I/DEBUG(144): 7bf4e998 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e99c 3f800000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9a0 00000001
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9a4 3f800000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9a8 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9ac 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9b0 3f800000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9b4 3f800000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9b8 41bf9b94 /system/lib/libmedia.so
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9bc 7c795000 /dev/ashmem/AudioFlinger::Client (deleted)
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9c0 00000000
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9c4 7bf4f3d0
03-13 21:39:18.160: I/DEBUG(144): 7bf4e9c8 41b6a393 /system/lib/libmedia.so
03-13 21:39:18.160: I/DEBUG(144): ........ ........
03-13 21:39:18.160: I/DEBUG(144): #1 7bf4eabc 83b3f310
03-13 21:39:18.160: I/DEBUG(144): 7bf4eac0 78444760
03-13 21:39:18.160: I/DEBUG(144): 7bf4eac4 00004800
03-13 21:39:18.160: I/DEBUG(144): 7bf4eac8 7b5e9f10
03-13 21:39:18.160: I/DEBUG(144): 7bf4eacc a2100005
03-13 21:39:18.160: I/DEBUG(144): 7bf4ead0 a2100005
03-13 21:39:18.160: I/DEBUG(144): 7bf4ead4 00000800
03-13 21:39:18.160: I/DEBUG(144): 7bf4ead8 788df084
03-13 21:39:18.160: I/DEBUG(144): 7bf4eadc 00000200
03-13 21:39:18.160: I/DEBUG(144): 7bf4eae0 729ebd20
03-13 21:39:18.160: I/DEBUG(144): 7bf4eae4 3b800000
03-13 21:39:18.160: I/DEBUG(144): 7bf4eae8 729ebd24
03-13 21:39:18.160: I/DEBUG(144): 7bf4eaec 7bf4f224
03-13 21:39:18.160: I/DEBUG(144): 7bf4eaf0 a2200005
03-13 21:39:18.160: I/DEBUG(144): 7bf4eaf4 7b5e94c0
03-13 21:39:18.160: I/DEBUG(144): 7bf4eaf8 41178c10 /system/lib/libdvm.so
03-13 21:39:18.160: I/DEBUG(144): ........ ........
03-13 21:39:18.160: I/DEBUG(144): #2 7bf4eb2c 788df010
03-13 21:39:18.160: I/DEBUG(144): 7bf4eb30 436236d0 /dev/ashmem/dalvik-heap (deleted)
03-13 21:39:18.160: I/DEBUG(144): 7bf4eb34 00000200
03-13 21:39:18.160: I/DEBUG(144): 7bf4eb38 43623f10 /dev/ashmem/dalvik-heap (deleted)
03-13 21:39:18.160: I/DEBUG(144): 7bf4eb3c 792afb68 /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.160: I/DEBUG(144): 7bf4eb40 79091016 /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.160: I/DEBUG(144): 7bf4eb44 792afb68 /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.160: I/DEBUG(144): 7bf4eb48 78ff0899 /data/app-lib/com.debia.sostavslova-2/libgideros.so
03-13 21:39:18.220: I/BootReceiver(451): Copying /data/tombstones/tombstone_08 to DropBox (SYSTEM_TOMBSTONE)
03-13 21:39:18.240: W/ActivityManager(451): Force finishing activity com.debia.sostavslova/com.giderosmobile.android.sostavslovoActivity
03-13 21:39:18.250: E/IMGSRV(145): :0: PVRDRMOpen: TP3, ret = 90
03-13 21:39:18.270: W/InputDispatcher(451): channel '21f4c470 com.debia.sostavslova/com.giderosmobile.android.sostavslovoActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
03-13 21:39:18.270: E/InputDispatcher(451): channel '21f4c470 com.debia.sostavslova/com.giderosmobile.android.sostavslovoActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
03-13 21:39:18.270: W/InputDispatcher(451): Attempted to unregister already unregistered input channel '21f4c470 com.debia.sostavslova/com.giderosmobile.android.sostavslovoActivity (server)'
03-13 21:39:18.270: I/WindowState(451): WIN DEATH: Window{21f4c470 u0 com.debia.sostavslova/com.giderosmobile.android.sostavslovoActivity}
03-13 21:39:18.270: I/WindowState(451): WIN DEATH: Window{21cf65e8 u0 SurfaceView}
03-13 21:39:18.280: I/ActivityManager(451): Process com.debia.sostavslova (pid 3896) has died.

XOR encryption key too short

The xor encryption key is too short (unless it has been changed recently) as it's only a byte or two longer than some standard fixed headers (the lua bytecode header is one of them). It would be better if set to something 256 bytes or longer.

Windows Player resize himself

In the last build, when i use the Windows player and run CTRL+R, the window of the player resize himself and after that, when i rerun, move the content of the window to the bottom of the screen (see this link)

But, if i set a resolution of 640*960 to the player and set the editor window to left of my screen and run CTRL+R, the player will be placed at the right of the editor.

1430380531-sans-titre-5

Exporting to Windows exports data even if template not found

If no template folder isn't found then maybe a message should appear saying 'template not found' rather than an export of the whole contents of the templates folder occuring?

This would let people know they haven't installed that export platform properly?

Splash screen

With the new OpenGL 2 having to compile shaders at start and some people using LuaJIT, it might be a good idea for the system to display a splash screen as soon as possible.

It would be good if the user could select it for the project, if nothing selected then it could display the 'Made with Gideros' splash screen?

Project WindowWidth/Height set incorrectly for landscape projects

Window width/height are set to 320x480 by default, this should be 480x320 for landscape project.

Possibly better would be if left at 0,0 then the player could get it's windowWidth/Height from contentWidth/Height ?

That would mean existing projects look ok if either orientation.

Currently on landscape it messes up if autoscale is on unless you are aware of it and correct the setting.

Two bugus folders made in src\com

When you export a project to eclipse then in src\com are two extra folders called:

GiderosiOSPlayer

and

GiderosiOSPlayer.xcodeproj

2015.04.04 Player crashes in OSX 10.8.5 right at the start

Hi folks,
the player crashes right at the start.

Process: Gideros Player [545]
Path: /Applications/Gideros Studio/Gideros Player.app/Contents/MacOS/Gideros Player
Identifier: com.appcodingeasy.Gideros Player
Version: ???
Code Type: X86-64 (Native)
Parent Process: launchd [140]
User ID: 501

Date/Time: 2015-04-04 11:48:34.688 +0200
OS Version: Mac OS X 10.8.5 (12F45)
Report Version: 10

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

VM Regions Near 0:
-->
MALLOC metadata 0000000008071000-0000000008072000 [ 4K] r--/rwx SM=ZER

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 GLEngine 0x000000000b17dcac glGetProgramInfoLog_Exec + 340
1 com.appcodingeasy.Gideros Player 0x0000000108104262 oglSetupShaders() + 594
2 com.appcodingeasy.Gideros Player 0x00000001081042c3 oglInitialize(unsigned int, unsigned int) + 19
3 com.appcodingeasy.Gideros Player 0x00000001080ecc77 Application::initView() + 23
4 com.appcodingeasy.Gideros Player 0x00000001080d3d9a LuaApplication::initialize() + 234
5 com.appcodingeasy.Gideros Player 0x0000000108077948 GLCanvas::initializeGL() + 24
6 org.qt-project.QtOpenGL 0x00000001084a81c6 QGLWidget::glInit() + 54
7 org.qt-project.QtOpenGL 0x00000001084a7dd8 QGLWidget::resizeEvent(QResizeEvent_) + 88
8 org.qt-project.QtWidgets 0x000000010856e4e2 QWidget::event(QEvent_) + 2162
9 com.appcodingeasy.Gideros Player 0x000000010807cd9d GLCanvas::event(QEvent_) + 1293
10 org.qt-project.QtWidgets 0x000000010852edbb QApplicationPrivate::notify_helper(QObject_, QEvent_) + 251
11 org.qt-project.QtWidgets 0x0000000108532110 QApplication::notify(QObject_, QEvent_) + 8192
12 org.qt-project.QtCore 0x00000001092c1fb3 QCoreApplication::notifyInternal(QObject_, QEvent_) + 115
13 org.qt-project.QtWidgets 0x0000000108589e03 0x1084fd000 + 577027
14 org.qt-project.QtWidgets 0x0000000108588624 0x1084fd000 + 570916
15 org.qt-project.QtWidgets 0x000000010852edbb QApplicationPrivate::notify_helper(QObject_, QEvent_) + 251
16 org.qt-project.QtWidgets 0x0000000108532110 QApplication::notify(QObject_, QEvent_) + 8192
17 org.qt-project.QtCore 0x00000001092c1fb3 QCoreApplication::notifyInternal(QObject_, QEvent_) + 115
18 org.qt-project.QtGui 0x0000000108b5e7e3 QGuiApplicationPrivate::processGeometryChangeEvent(QWindowSystemInterfacePrivate::GeometryChangeEvent_) + 403
19 org.qt-project.QtGui 0x0000000108b5aba8 QGuiApplicationPrivate::processWindowSystemEvent(QWindowSystemInterfacePrivate::WindowSystemEvent_) + 88
20 org.qt-project.QtGui 0x0000000108b4851a QWindowSystemInterface::sendWindowSystemEvents(QFlagsQEventLoop::ProcessEventsFlag) + 346
21 org.qt-project.QtGui 0x0000000108b46611 QWindowSystemInterface::flushWindowSystemEvents(QFlagsQEventLoop::ProcessEventsFlag) + 673
22 libqcocoa.dylib 0x0000000009598341 0x9582000 + 90945
23 com.apple.CoreFoundation 0x00007fff9111feda _CFXNotificationPost + 2554
24 com.apple.Foundation 0x00007fff8a5f1796 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
25 com.apple.AppKit 0x00007fff8eedd49e -[NSWindow setFrameCommon:display:stashSize:] + 2322
26 com.apple.AppKit 0x00007fff8edb4cab -[NSWindow setStyleMask:] + 1102
27 libqcocoa.dylib 0x0000000009593350 0x9582000 + 70480
28 org.qt-project.QtGui 0x0000000108b65fc3 QWindow::setFlags(QFlagsQt::WindowType) + 35
29 org.qt-project.QtWidgets 0x000000010855c2f9 QWidgetPrivate::create_sys(unsigned long long, bool, bool) + 649
30 org.qt-project.QtWidgets 0x000000010855b119 QWidget::create(unsigned long long, bool, bool) + 425
31 org.qt-project.QtWidgets 0x000000010855c02c QWidgetPrivate::createWinId(unsigned long long) + 300
32 org.qt-project.QtWidgets 0x000000010855cae7 0x1084fd000 + 391911
33 org.qt-project.QtWidgets 0x000000010855c6b0 QWidgetPrivate::create_sys(unsigned long long, bool, bool) + 1600
34 org.qt-project.QtWidgets 0x000000010855b119 QWidget::create(unsigned long long, bool, bool) + 425
35 org.qt-project.QtWidgets 0x000000010855c02c QWidgetPrivate::createWinId(unsigned long long) + 300
36 org.qt-project.QtWidgets 0x000000010855bfa2 QWidgetPrivate::createWinId(unsigned long long) + 162
37 org.qt-project.QtWidgets 0x000000010855cae7 0x1084fd000 + 391911
38 org.qt-project.QtWidgets 0x000000010855cbda 0x1084fd000 + 392154
39 org.qt-project.QtWidgets 0x000000010855c6b0 QWidgetPrivate::create_sys(unsigned long long, bool, bool) + 1600
40 org.qt-project.QtWidgets 0x000000010855b119 QWidget::create(unsigned long long, bool, bool) + 425
41 org.qt-project.QtWidgets 0x00000001086a1d39 0x1084fd000 + 1723705
42 org.qt-project.QtWidgets 0x00000001086a1bf2 0x1084fd000 + 1723378
43 com.appcodingeasy.Gideros Player 0x0000000108070a14 Ui_MainWindowClass::setupUi(QMainWindow
) + 7476
44 com.appcodingeasy.Gideros Player 0x0000000108067a13 MainWindow::setupUiActions() + 35
45 com.appcodingeasy.Gideros Player 0x0000000108067940 MainWindow::MainWindow(QWidget*) + 176
46 com.appcodingeasy.Gideros Player 0x0000000108066ef8 main + 1272
47 com.appcodingeasy.Gideros Player 0x00000001080669f4 start + 52

Thread 1:
0 libsystem_kernel.dylib 0x00007fff8863c6d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff9290af1c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff9290ace3 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff928f5191 start_wqthread + 13

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8863cd16 kevent + 10
1 libdispatch.dylib 0x00007fff8e127dea _dispatch_mgr_invoke + 883
2 libdispatch.dylib 0x00007fff8e1279ee _dispatch_mgr_thread + 54

Thread 3:
0 libsystem_kernel.dylib 0x00007fff8863c6d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff9290af1c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff9290ace3 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff928f5191 start_wqthread + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff8863c6d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff9290af1c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff9290ace3 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff928f5191 start_wqthread + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff8863c6d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff9290af1c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff9290ace3 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff928f5191 start_wqthread + 13

Thread 6:: Qt bearer thread
0 libsystem_kernel.dylib 0x00007fff8863c322 select + 10
1 libsystem_c.dylib 0x00007fff92992610 pselect$1050 + 199
2 org.qt-project.QtCore 0x0000000109312f48 qt_safe_select(int, fd_set
, fd_set
, fd_set_, timespec const_) + 104
3 org.qt-project.QtCore 0x0000000109314000 QEventDispatcherUNIXPrivate::doSelect(QFlagsQEventLoop::ProcessEventsFlag, timespec*) + 672
4 org.qt-project.QtCore 0x00000001093150ca QEventDispatcherUNIX::processEvents(QFlagsQEventLoop::ProcessEventsFlag) + 234
5 org.qt-project.QtCore 0x00000001092bf5ad QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) + 381
6 org.qt-project.QtCore 0x00000001090b4905 QThread::exec() + 117
7 org.qt-project.QtCore 0x00000001090b8393 0x109084000 + 213907
8 libsystem_c.dylib 0x00007fff92908772 _pthread_start + 327
9 libsystem_c.dylib 0x00007fff928f51a1 thread_start + 13

Thread 7:: com.apple.audio.IOThread.client
0 libsystem_kernel.dylib 0x00007fff8863a686 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff88639c42 mach_msg + 70
2 com.apple.audio.CoreAudio 0x00007fff8e39270c HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t_, bool, unsigned int) + 98
3 com.apple.audio.CoreAudio 0x00007fff8e39269a HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
4 com.apple.audio.CoreAudio 0x00007fff8e390ad9 HALC_ProxyIOContext::IOWorkLoop() + 1161
5 com.apple.audio.CoreAudio 0x00007fff8e3905bf HALC_ProxyIOContext::IOThreadEntry(void_) + 83
6 com.apple.audio.CoreAudio 0x00007fff8e390497 HALB_IOThread::Entry(void*) + 75
7 libsystem_c.dylib 0x00007fff92908772 _pthread_start + 327
8 libsystem_c.dylib 0x00007fff928f51a1 thread_start + 13

Thread 8:
0 libsystem_kernel.dylib 0x00007fff8863c386 __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff929927c8 nanosleep + 163
2 libsystem_c.dylib 0x00007fff929926df usleep + 54
3 libgid.1.dylib 0x00000001082a937b 0x10828d000 + 115579
4 libsystem_c.dylib 0x00007fff92908772 _pthread_start + 327
5 libsystem_c.dylib 0x00007fff928f51a1 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x00007fff57b9ca40 rsp: 0x00007fff57b9ca10
r8: 0x00007fa7b3a01be0 r9: 0x0000000000000003 r10: 0x0000000000000002 r11: 0x0000000000000000
r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x00007fff57b9ca54 r15: 0x00007fa7b4000c00
rip: 0x000000000b17dcac rfl: 0x0000000000010246 cr2: 0x0000000000000000
Logical CPU: 1

Binary Images:
0x9582000 - 0x9628ff7 +libqcocoa.dylib (0) <0E14D8CF-372E-3B84-BD10-730A617933ED> /Applications/Gideros Studio/Gideros Player.app/Contents/PlugIns/platforms/libqcocoa.dylib
0x9660000 - 0x9694fff +org.qt-project.QtPrintSupport (5.4 - 5.4.0) /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/QtPrintSupport.framework/Versions/5/QtPrintSupport
0x9d62000 - 0x9d78fff +libqcorewlanbearer.dylib (0) /Applications/Gideros Studio/Gideros Player.app/Contents/PlugIns/bearer/libqcorewlanbearer.dylib
0x9d80000 - 0x9d89ff7 +libqgenericbearer.dylib (0) <59576EA5-9F93-3F1E-AFD6-E1DE1A5849A5> /Applications/Gideros Studio/Gideros Player.app/Contents/PlugIns/bearer/libqgenericbearer.dylib
0x9dc1000 - 0x9dc6fff com.apple.audio.AppleHDAHALPlugIn (2.4.7 - 2.4.7fc4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x9fde000 - 0x9fe0fff +bitop.dylib (1) /Applications/Gideros Studio//bitop.dylib
0x9fe3000 - 0x9ffcff7 +clipper.dylib (1) <43131CA2-58E9-384B-B7F4-5E1BCD908C0D> /Applications/Gideros Studio/
/clipper.dylib
0xa006000 - 0xa00bff7 +json.dylib (1) /Applications/Gideros Studio//json.dylib
0xa00f000 - 0xa012fff +lfs.dylib (1) <7556B039-7BDC-3227-A2C8-04686EFA003E> /Applications/Gideros Studio/
/lfs.dylib
0xb015000 - 0xb01efff +lpeg.dylib (1) <10553EEC-FAE3-33F1-A9F5-348883B61E35> /Applications/Gideros Studio//lpeg.dylib
0xb022000 - 0xb0e3fff +lsqlite3.dylib (1) <40155E0A-43C3-3291-BC43-798C3F7BEC09> /Applications/Gideros Studio/
/lsqlite3.dylib
0xb0f5000 - 0xb0feff7 +luasocket.dylib (1) <7556A0A0-755E-3520-8F23-B373A060BE6F> /Applications/Gideros Studio//luasocket.dylib
0xb103000 - 0xb105ff7 +struct.dylib (1) /Applications/Gideros Studio/
/struct.dylib
0xb108000 - 0xb2c6fff GLEngine (8.10.1) <1BD4D913-CE6C-3389-B4E1-FC7352E4C23F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0xb2fd000 - 0xb30afff libGPUSupport.dylib (8.10.1) <7860F083-3F7B-3811-A56C-E8557A90C7DB> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport.dylib
0xb311000 - 0xb33cfff GLRendererFloat (8.10.1) <055EC8E7-2D7E-370C-96AD-DBEEDB106927> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
0xb345000 - 0xb34efe7 libcldcpuengine.dylib (2.2.16) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0xc70c000 - 0xc87cfff libGLProgrammability.dylib (8.10.1) <3E488CEF-5751-3073-B8EE-0B4CA39CB6AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0xc8b4000 - 0xcb6cfff com.apple.ATIRadeonX2000GLDriver (8.16.80 - 8.1.6) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLDriver
0x70000000 - 0x70155ff7 com.apple.audio.units.Components (1.9.1 - 1.9.1) <58B9FC07-053C-3123-AFBC-5A31851C379F> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x108061000 - 0x1081d8fff +com.appcodingeasy.Gideros Player (???) <946AD928-0461-3BAD-B276-A85AA1F7F1EC> /Applications/Gideros Studio/Gideros Player.app/Contents/MacOS/Gideros Player
0x108251000 - 0x10827cfff com.apple.audio.OpenAL (1.6 - 1.6) <0FBA7491-B817-39EE-8898-FF88C9485B50> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
0x10828d000 - 0x1083b6fff +libgid.1.dylib (1) <6C7A787F-C6CD-3322-8E20-897D5E65E564> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/libgid.1.dylib
0x10841a000 - 0x108423ff7 +libgvfs.1.dylib (1) <552F3729-3D53-3FBE-8A93-BACE223E512B> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/libgvfs.1.dylib
0x10842c000 - 0x108467fff +liblua.1.dylib (1) <980297A0-07C5-3502-AC78-4221FEEB95D1> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/liblua.1.dylib
0x108475000 - 0x10847eff7 +libgideros.1.dylib (1) <2DE3D208-E227-3669-9401-828836A5DAB4> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/libgideros.1.dylib
0x10848a000 - 0x108497fff +libpystring.1.dylib (1) /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/libpystring.1.dylib
0x10849d000 - 0x1084dbfff +org.qt-project.QtOpenGL (5.4 - 5.4.0) /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/QtOpenGL.framework/Versions/5/QtOpenGL
0x1084fd000 - 0x108a06fff +org.qt-project.QtWidgets (5.4 - 5.4.0) <4A22C249-53F8-3F10-83FC-C73889BEC7CC> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets
0x108b3a000 - 0x108facff7 +org.qt-project.QtGui (5.4 - 5.4.0) <44BF6792-F320-3D06-BC00-C2A8B8949260> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui
0x109084000 - 0x10958cff7 +org.qt-project.QtCore (5.4 - 5.4.0) <906D5182-AD27-30AB-A012-96E0A71D8266> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore
0x109619000 - 0x10972eff7 +org.qt-project.QtNetwork (5.4 - 5.4.0) <8FF0244B-2E0D-3108-A493-629C9A728AD5> /Applications/Gideros Studio/Gideros Player.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork
0x109764000 - 0x109769fff com.apple.agl (3.2.1 - AGL-3.2.1) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x7fff67c61000 - 0x7fff67c9593f dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
0x7fff86a8e000 - 0x7fff86aaefff libPng.dylib (852) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff86aaf000 - 0x7fff86b06ff7 com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x7fff86b07000 - 0x7fff86b15ff7 libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
0x7fff86b16000 - 0x7fff86b75fff com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff86b78000 - 0x7fff86b99fff com.apple.Ubiquity (1.2 - 243.15) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff86c5e000 - 0x7fff86c74fff com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff86c75000 - 0x7fff86c79fff libGIF.dylib (852) <326C48F1-C892-3AF9-94BC-32768EFF6731> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff86f16000 - 0x7fff86f1bfff libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
0x7fff86f1d000 - 0x7fff86fe2ff7 com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff87096000 - 0x7fff87131fff com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff87132000 - 0x7fff8713efff com.apple.CrashReporterSupport (10.8.3 - 418) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff87194000 - 0x7fff87195ff7 libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
0x7fff87196000 - 0x7fff8719dff7 libcopyfile.dylib (89.0.70) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib
0x7fff87350000 - 0x7fff87550fff libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
0x7fff875d3000 - 0x7fff8762dff7 com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8762e000 - 0x7fff876e0ff7 com.apple.LaunchServices (539.11 - 539.11) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff87a11000 - 0x7fff87a51ff7 com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff87ac1000 - 0x7fff87ad4ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff87ad5000 - 0x7fff87d0aff7 com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff87d0b000 - 0x7fff87d65fff com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff87d66000 - 0x7fff87d73fff com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff8862a000 - 0x7fff88645ff7 libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
0x7fff88646000 - 0x7fff88689ff7 com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff8868a000 - 0x7fff889a1ff7 com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff88a02000 - 0x7fff88a4afff libcurl.4.dylib (69.2.71) /usr/lib/libcurl.4.dylib
0x7fff88a4b000 - 0x7fff88a4cff7 libsystem_sandbox.dylib (220.3) /usr/lib/system/libsystem_sandbox.dylib
0x7fff88b0f000 - 0x7fff88b0ffff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff88b10000 - 0x7fff88b4bfff com.apple.LDAPFramework (2.4.28 - 194.5) <7E4F2C08-0010-34AE-BC46-149B7EE8A0F5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff88b4c000 - 0x7fff88b4cfff libOpenScriptingUtil.dylib (148.3) /usr/lib/libOpenScriptingUtil.dylib
0x7fff88ca7000 - 0x7fff88cb5ff7 libkxld.dylib (2050.48.12) /usr/lib/system/libkxld.dylib
0x7fff88cb6000 - 0x7fff88d1efff libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff890ab000 - 0x7fff89113ff7 libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
0x7fff89114000 - 0x7fff891b2ff7 com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff891f6000 - 0x7fff8922cfff libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
0x7fff8922d000 - 0x7fff8923aff7 com.apple.NetAuth (4.0 - 4.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff89743000 - 0x7fff89787fff libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
0x7fff89795000 - 0x7fff89b8cfff libLAPACK.dylib (1073.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff89b8d000 - 0x7fff89bafff7 com.apple.Kerberos (2.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff89bb0000 - 0x7fff89bbbff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff89bbc000 - 0x7fff89c08ff7 libauto.dylib (185.4) /usr/lib/libauto.dylib
0x7fff89c09000 - 0x7fff89c48ff7 com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8a086000 - 0x7fff8a0d2fff com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff8a0d3000 - 0x7fff8a0e1fff com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
0x7fff8a0e2000 - 0x7fff8a1e4fff libJP2.dylib (852) <01E502E9-7FD3-3A5D-8EA4-2DC8C56E0497> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff8a1e5000 - 0x7fff8a23bfff com.apple.HIServices (1.20 - 417) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8a2de000 - 0x7fff8a2dffff liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
0x7fff8a2e0000 - 0x7fff8a2e2fff libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
0x7fff8a2ef000 - 0x7fff8a3e0ff7 com.apple.DiskImagesFramework (10.8.3 - 345) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff8a3e1000 - 0x7fff8a567fff libBLAS.dylib (1073.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff8a5a1000 - 0x7fff8a5a3fff libCVMSPluginSupport.dylib (8.10.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff8a5a4000 - 0x7fff8a5a7fff libRadiance.dylib (852) <139962CD-21E2-3D31-9F47-D5F2D6C2C2BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff8a5a8000 - 0x7fff8a907fff com.apple.Foundation (6.8 - 945.19) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8a965000 - 0x7fff8a969fff libCGXType.A.dylib (340) <119487A0-AB1C-320C-9FF2-A85BF943BA11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8a96a000 - 0x7fff8a995fff libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
0x7fff8aaf5000 - 0x7fff8ab2bfff com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff8ae2c000 - 0x7fff8ae51ff7 libc++abi.dylib (26) /usr/lib/libc++abi.dylib
0x7fff8ae52000 - 0x7fff8ae67fff com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff8aec3000 - 0x7fff8aee5ff7 libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
0x7fff8aee6000 - 0x7fff8af0dfff com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x7fff8c06f000 - 0x7fff8c07cfff libbz2.1.0.dylib (29) /usr/lib/libbz2.1.0.dylib
0x7fff8c085000 - 0x7fff8c087ff7 com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff8c338000 - 0x7fff8c35fff7 com.apple.PerformanceAnalysis (1.16 - 16) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff8c360000 - 0x7fff8c45dff7 libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
0x7fff8c554000 - 0x7fff8c554fff com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8c555000 - 0x7fff8c6f0fef com.apple.vImage (6.0 - 6.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8c6f6000 - 0x7fff8c7f5fff libcrypto.0.9.8.dylib (52.1) <796E5F5E-36BF-3B1B-A519-C9A1682199C4> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8c811000 - 0x7fff8c906fff libiconv.2.dylib (34) /usr/lib/libiconv.2.dylib
0x7fff8c909000 - 0x7fff8c909fff libkeymgr.dylib (25) /usr/lib/system/libkeymgr.dylib
0x7fff8cba9000 - 0x7fff8d539a07 com.apple.CoreGraphics (1.600.0 - 340) <4E39B001-BD9B-3A60-A495-C7F908F52C44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8d54a000 - 0x7fff8d647fff libsqlite3.dylib (138.1) /usr/lib/libsqlite3.dylib
0x7fff8d648000 - 0x7fff8d670fff libJPEG.dylib (852) <4E159C31-1B41-3EFF-89EC-3F7BC9053F2C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff8d722000 - 0x7fff8d724fff com.apple.TrustEvaluationAgent (2.0 - 23) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8d764000 - 0x7fff8d768fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff8d79a000 - 0x7fff8d79bff7 libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
0x7fff8d7f5000 - 0x7fff8d801fff libCSync.A.dylib (340) <1ED9A6B9-D1FF-3745-A289-981ACE0C89D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x7fff8d802000 - 0x7fff8d977fff com.apple.CFNetwork (596.6.2 - 596.6.2) <03663F71-3E01-3958-9BBC-D7015189A4AC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8dbc7000 - 0x7fff8dbcdfff com.apple.DiskArbitration (2.5.2 - 2.5.2) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff8dbcf000 - 0x7fff8dc09ff7 com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff8dc0a000 - 0x7fff8dc1bff7 libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
0x7fff8dc1c000 - 0x7fff8dcf6fff com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff8de54000 - 0x7fff8de55ff7 libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
0x7fff8de56000 - 0x7fff8de87ff7 com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8dec7000 - 0x7fff8df46ff7 com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8df91000 - 0x7fff8dfedff7 com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff8dfee000 - 0x7fff8dff3fff com.apple.OpenDirectory (10.8 - 151.10) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff8dff4000 - 0x7fff8e0c7ff7 com.apple.DiscRecording (7.0 - 7000.2.4) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8e123000 - 0x7fff8e138ff7 libdispatch.dylib (228.23) /usr/lib/system/libdispatch.dylib
0x7fff8e202000 - 0x7fff8e211ff7 libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
0x7fff8e249000 - 0x7fff8e2b2fff libstdc++.6.dylib (56) /usr/lib/libstdc++.6.dylib
0x7fff8e336000 - 0x7fff8e364fff com.apple.CoreServicesInternal (154.4 - 154.4) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff8e365000 - 0x7fff8e3c8fff com.apple.audio.CoreAudio (4.1.2 - 4.1.2) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff8e40d000 - 0x7fff8e415ff7 libsystem_dnssd.dylib (379.38.1) /usr/lib/system/libsystem_dnssd.dylib
0x7fff8e416000 - 0x7fff8e42dfff com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff8e430000 - 0x7fff8e433ff7 libdyld.dylib (210.2.3) /usr/lib/system/libdyld.dylib
0x7fff8e434000 - 0x7fff8e471fef libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff8e472000 - 0x7fff8e479fff com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff8e4d5000 - 0x7fff8e5e1fff libFontParser.dylib (84.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff8e5e2000 - 0x7fff8e633ff7 com.apple.SystemConfiguration (1.12.2 - 1.12.2) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8e74f000 - 0x7fff8e762ff7 libbsm.0.dylib (32) /usr/lib/libbsm.0.dylib
0x7fff8e763000 - 0x7fff8e883fff com.apple.desktopservices (1.7.4 - 1.7.4) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff8e885000 - 0x7fff8e88bff7 libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
0x7fff8eb2c000 - 0x7fff8eb2cfff com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8eb2d000 - 0x7fff8eb31ff7 com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff8ec31000 - 0x7fff8ec74ff7 com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff8ec7c000 - 0x7fff8eceaff7 com.apple.framework.IOKit (2.0.1 - 755.42.1) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8eceb000 - 0x7fff8ecfafff com.apple.opengl (1.8.10 - 1.8.10) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8ecfb000 - 0x7fff8ed4aff7 libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff8ed57000 - 0x7fff8ed58fff libsystem_blocks.dylib (59) /usr/lib/system/libsystem_blocks.dylib
0x7fff8ed59000 - 0x7fff8f986fff com.apple.AppKit (6.8 - 1187.40) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff8f987000 - 0x7fff8f9d6ff7 libcorecrypto.dylib (106.2) /usr/lib/system/libcorecrypto.dylib
0x7fff8f9d7000 - 0x7fff8f9f6ff7 com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff8f9f7000 - 0x7fff8fab4ff7 com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8fab5000 - 0x7fff8fabffff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff8fd89000 - 0x7fff8fe16ff7 com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff8fe17000 - 0x7fff8fe17fff com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8fe64000 - 0x7fff8fe68ff7 com.apple.CommonPanels (1.2.5 - 94) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff8fe85000 - 0x7fff8fe87ff7 libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
0x7fff8fe88000 - 0x7fff902a5fff FaceCoreLight (2.4.1) /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x7fff902a6000 - 0x7fff902d0ff7 com.apple.CoreVideo (1.8 - 99.4) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff902d3000 - 0x7fff902d6fff com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff902d7000 - 0x7fff90607fff com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff90678000 - 0x7fff90686fff libcommonCrypto.dylib (60027) /usr/lib/system/libcommonCrypto.dylib
0x7fff90687000 - 0x7fff90958fff com.apple.security (7.0 - 55179.16.3) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff909e7000 - 0x7fff909ebfff com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff909ec000 - 0x7fff90a6dfff com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff90eb7000 - 0x7fff90ee5ff7 libsystem_m.dylib (3022.6) /usr/lib/system/libsystem_m.dylib
0x7fff90ee6000 - 0x7fff91038fff com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff91039000 - 0x7fff9103afff libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff9103b000 - 0x7fff91058ff7 com.apple.openscripting (1.3.6 - 148.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff91059000 - 0x7fff9107aff7 libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
0x7fff910d9000 - 0x7fff910d9fff com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff910da000 - 0x7fff912c4ff7 com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff912c5000 - 0x7fff912dcfff com.apple.GenerationalStorage (1.1 - 132.3) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff9132e000 - 0x7fff9137dfff com.apple.framework.CoreWiFi (1.3 - 130.13) /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff9137e000 - 0x7fff91383fff libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
0x7fff91388000 - 0x7fff91388fff com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff91392000 - 0x7fff91396fff libCoreVMClient.dylib (32.5) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff913a6000 - 0x7fff913affff com.apple.CommerceCore (1.0 - 26.3) <870C7810-0D27-3AC5-95A0-3224BB4890C0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff913b0000 - 0x7fff91432ff7 com.apple.Heimdal (3.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff91433000 - 0x7fff91433ffd com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff9145e000 - 0x7fff9157692f libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
0x7fff915b7000 - 0x7fff915e3ff7 libRIP.A.dylib (340) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff91621000 - 0x7fff91676ff7 libTIFF.dylib (852) <0CA1662F-EB05-34DE-B9BA-0A03EC59B846> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff91677000 - 0x7fff91790fff com.apple.ImageIO.framework (3.2.2 - 852) <1D023BCE-1FA2-3743-B449-7489BC0C5C43> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff91791000 - 0x7fff9193ffff com.apple.QuartzCore (1.8 - 304.4) <84F0B40E-DF91-36F2-9F2E-3922234206A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff91a05000 - 0x7fff91aabff7 com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff922e2000 - 0x7fff922e2fff com.apple.ApplicationServices (45 - 45) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff922e3000 - 0x7fff922fafff libGL.dylib (8.10.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff922fb000 - 0x7fff92301fff libmacho.dylib (829) /usr/lib/system/libmacho.dylib
0x7fff92873000 - 0x7fff928f3ff7 com.apple.ApplicationServices.ATS (341.2 - 341.2) <0EF1BB57-71AA-304D-A455-55CBE0A4983A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff928f4000 - 0x7fff929c0ff7 libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
0x7fff92bbc000 - 0x7fff92c8eff7 com.apple.CoreText (260.0 - 275.17) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff92d8c000 - 0x7fff92d97fff com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff9301c000 - 0x7fff93089ff7 com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff9308a000 - 0x7fff9309efff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff9309f000 - 0x7fff930beff7 libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
0x7fff930bf000 - 0x7fff93363ff7 com.apple.CoreImage (8.4.0 - 1.0.1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff93364000 - 0x7fff933aeff7 libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff933af000 - 0x7fff933c1ff7 libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
0x7fff933c2000 - 0x7fff933cafff liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
0x7fff9361e000 - 0x7fff936b8fff libvMisc.dylib (380.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff936b9000 - 0x7fff936bbfff com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff936ed000 - 0x7fff936f8fff libsystem_notify.dylib (98.6) <1E490CB2-9311-3B36-8372-37D3FB0FD818> /usr/lib/system/libsystem_notify.dylib
0x7fff93732000 - 0x7fff9376bff7 libssl.0.9.8.dylib (52.1) /usr/lib/libssl.0.9.8.dylib
0x7fff9378f000 - 0x7fff93796fff libGFXShared.dylib (8.10.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 2
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 492
thread_create: 1
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=180.5M resident=327.2M(181%) swapped_out_or_unallocated=16777216.0T(9746996264960%)
Writable regions: Total=65.4M written=7024K(10%) resident=24.9M(38%) swapped_out=0K(0%) unallocated=40.6M(62%)

REGION TYPE VIRTUAL
=========== =======
(null) (reserved) 40K reserved VM address space (unallocated)
CG shared images 1184K
CoreServices 4528K
IOKit 168K
MALLOC 34.2M
MALLOC guard page 48K
Memory tag=249 192K
OpenGL GLSL 4112K
OpenGL GLSL (reserved) 128K reserved VM address space (unallocated)
STACK GUARD 56.0M
Stack 12.1M
VM_ALLOCATE 16.1M
__DATA 12.2M
__IMAGE 528K
__LINKEDIT 56.8M
__TEXT 123.7M
__UNICODE 544K
mapped file 37.2M
shared memory 360K
=========== =======
TOTAL 359.8M
TOTAL, minus reserved VM space 359.7M

[android] "jumpy" sprite when update position in ENTER_FRAME event

When constantly updating position for a sprite in ENTER_FRAME event, at a bit higher speeds, the sprite looks like it jumps on the screen and the movement is not smooth. This happens only on android devices and it becomes more visible when more sprites are moved at the same time. The issue is described in details and with an attached example here:

http://giderosmobile.com/forum/discussion/comment/41240#Comment_41240

The issue does not occur on Apple devices, unless the number of sprites is extremely high and the hardware limitation become visible.

Different export paths for different platforms

Having to remember to change the path manually on export makes it too easy for an iOS or Android export to overwrite the other. This will get worse as more platforms are added.

It would be great if each platform had it's own export path.

This could even mean that if the user created a shared folder with virtualbox then they could export iOS to that, then in the virtualbox have OSX running and sign the code!

getPosition bug

Value for Sprite:getPosition returned (x,y,y), and not returned Z position
Sprite:getZ also got this bug

Probably better that set/get position only use/return 2 variable, and separate Z, just like setRotationX & Y.
That way people can safely use a:setPosition( b:getPosition() )

Ability to override auto-scaling setting

[enhancement]
Could be useful to provide a way to manually force/override the predefined project autoscaling factor settings.

As an example: a device with a high resolution should use @2x images by project settings, however, the user could be given the option to use low-res textures (overriding project auto-scaling and loading base images instead of @2x images).
This could help a lot to support multiple devices with multiple hardware differences.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.