Andreas Monitzer

Results 112 comments of Andreas Monitzer

True, not at the same time, but you could wrap it in an `Arc` and use it sequentially from multiple threads.

Reading through the code, if you replace your model, the old one will remain in the service's `infinityModels` array, so that's a leak.

My serializer needs the following code for my polymorphic relationship `props` to work: ```js serialize(snapshot, options) { let result = this._super(...arguments); let props = snapshot.hasMany('props'); if(props) { result.props = props.map(prop...

This change removes the `Send` trait from `winit::window::CursorIcon` for Windows, which is kinda a big deal. Is there a way to get it back? ``` = help: within `winit::platform_impl::platform::icon::RaiiIcon`, the...

I've compiled nanovg with emscripten. It's pretty trivial, here is my makefile: ```Makefile EXPORTED_FUNCTIONS=EXPORTED_FUNCTIONS="['_nvgBeginFrame','_nvgCancelFrame','_nvgEndFrame','_nvgGlobalCompositeOperation','_nvgGlobalCompositeBlendFunc','_nvgGlobalCompositeBlendFuncSeparate','_nvgRGB','_nvgRGBf','_nvgRGBA','_nvgRGBAf','_nvgLerpRGBA','_nvgTransRGBA','_nvgTransRGBAf','_nvgHSL','_nvgHSLA','_nvgSave','_nvgRestore','_nvgReset','_nvgShapeAntiAlias','_nvgStrokeColor','_nvgStrokePaint','_nvgFillColor','_nvgFillPaint','_nvgMiterLimit','_nvgStrokeWidth','_nvgLineCap','_nvgLineJoin','_nvgGlobalAlpha','_nvgResetTransform','_nvgTransform','_nvgTranslate','_nvgRotate','_nvgSkewX','_nvgSkewY','_nvgScale','_nvgCurrentTransform','_nvgTransformIdentity','_nvgTransformTranslate','_nvgTransformScale','_nvgTransformRotate','_nvgTransformSkewX','_nvgTransformSkewY','_nvgTransformMultiply','_nvgTransformPremultiply','_nvgTransformInverse','_nvgTransformPoint','_nvgDegToRad','_nvgRadToDeg','_nvgImageSize','_nvgDeleteImage','_nvgLinearGradient','_nvgBoxGradient','_nvgRadialGradient','_nvgImagePattern','_nvgScissor','_nvgIntersectScissor','_nvgResetScissor','_nvgBeginPath','_nvgMoveTo','_nvgLineTo','_nvgBezierTo','_nvgQuadTo','_nvgArcTo','_nvgClosePath','_nvgPathWinding','_nvgArc','_nvgRect','_nvgRoundedRect','_nvgRoundedRectVarying','_nvgEllipse','_nvgCircle','_nvgFill','_nvgStroke','_nvgCreateGLES2','_nvgDeleteGLES2','_nvglCreateImageFromHandleGLES2','_nvglImageHandleGLES2']" # add these symbols for font support: # ,'_nvgCreateFont','_nvgCreateFontMem','_nvgFindFont','_nvgAddFallbackFontId','_nvgAddFallbackFont','_nvgFontSize','_nvgFontBlur','_nvgTextLetterSpacing','_nvgTextLineHeight','_nvgTextAlign','_nvgFontFaceId','_nvgFontFace','_nvgText','_nvgTextBox','_nvgTextBounds','_nvgTextBoxBounds','_nvgTextGlyphPositions','_nvgTextMetrics','_nvgTextBreakLines' EMCC_OPTIONS=-s GL_UNSAFE_OPTS=1 -s NO_EXIT_RUNTIME=1 -s $(EXPORTED_FUNCTIONS) #...

Very nice! However, the wasm code was blocked by my adblocker for some reason… Anyways, I only get 35fps on my GeForce 1080, there's definitely room for improvement there. I...

I'm seeing the same thing. The problem with it (besides log spam) is that after 100 of these, WebGL in Chrome stops logging altogether, and I'm missing any messages that...

Thank you for the response! I think you understood my idea correctly, and yes, sqlite is an example of this kind of implementation for a B-Tree. Unfortunately, we cannot ship...

The readme is broken on crates.io for some reason…

Are there any updates on this? We're currently in the final strides of finishing a release of our software, but we're blocked by this crash. Is there anything we could...