Opens profile photo
Follow
Click to Follow septagh
Sepehr Taghdisian
@septagh
Engine programmer / Former male pornstar
github.com/septagJoined May 2009

Sepehr Taghdisian’s Tweets

I'm learning Vulkan, meanwhile, trying to implement fast iteration for mobile devices. There are no bundled assets for mobile, all of the assets are streamed from PC on-demand. This way, I can also have hot-reloads for all assets including shaders. 😍
2
47
One of the best developer communities I've ever been part of. Stewart loves his product and listens to all our feedbacks and discussions. I very much feel like part of the dev team. Maybe that would change if more ppl join, but this is how every software dev should be
Quote Tweet
I have the best customers ever! Not only do I get great bug reports and repro steps, but often the exact way to fix a problem. It's a great feeling being part of this positive feedback loop that continually makes software better.
Show this thread
7
If you are fed up with msvc on big projects, please try this out. you will be impressed by it's speed. Almost same shortcuts, opens vc solution files and uses msvc as debugger.
Quote Tweet
If you have to work with huge C++ codebase I highly recommend 10x Editor (10xeditor.com/index.htm). It is very fast and already better than Visual Studio imo.
9
Improved engine startup times in _rizz_ engine, by profiling startup times with chrome trace files. The file format is super simple and easy to make, there are also decent online viewers besides chrome://tracing. #C #indiedev
Image
7
I compared the debug build runtime performance between clang (win) and the latest msvc compiler in rizz/boids.c sample. Surprisingly, clang debug build performance is more than 3.5 times faster than msvc 16.10.2 (apparently, this would be the version with all perf improvements)
Image
Image
16
recently, I learned a simple trick to force specific hot functions to be inlined for debug builds on msvc compiler. change normal inlines to "static" or "inline __declspec(noinline)" in debug and use /Ob1 flag: godbolt.org/z/9rEbGo #cpp #c ty
6