Skip to content

Instantly share code, notes, and snippets.

View pollend's full-sized avatar
:octocat:
working on random stuff

Michael Pollind pollend

:octocat:
working on random stuff
View GitHub Profile
https://github.com/rust-bio/rust-bio
https://github.com/markschl/seq_io
https://github.com/arq5x/bedtools2
https://github.com/samtools/htslib
* thread #1, name = 'Editor', stop reason = breakpoint 4.1
* frame #0: 0x00007ffe798f0343 libScriptCanvas.Editor.so`ScriptCanvas::Datum::Initialize(this=0x00007fffffff9780, type=0x00007fffffff9760, originality=Copy, source=0x0000000000000000, sourceTypeID=0x00007fffffff96b0) at Datum.cpp:1524:13
frame #1: 0x00007ffe798f0317 libScriptCanvas.Editor.so`ScriptCanvas::Datum::Datum(this=0x00007fffffff9780, type=0x00007fffffff9760, originality=Copy, source=0x0000000000000000, sourceTypeID=0x00007fffffff96b0) at Datum.cpp:1251:9
frame #2: 0x00007ffe798f01e1 libScriptCanvas.Editor.so`ScriptCanvas::Datum::Datum(this=0x00007fffffff9780, type=0x00007fffffff9760, originality=Copy) at Datum.cpp:1245:11
frame #3: 0x00007ffe77bbbe07 libScriptCanvas.Editor.so`void ScriptCanvas::NodeFunctionGenericMultiReturn<AZ::Color (*)(AZ::Color const&, AZ::Color const&), ScriptCanvas::RandomNodes::RandomColorTraits, &(ScriptCanvas::RandomNodes::RandomColor(AZ::Color const&, AZ::Color const&)), void (*)(ScriptCanvas::Node&),
* frame #0: 0x00007fffbbd4cd25 libAtom_Feature_Common.Editor.so`AZ::Render::EsmShadowmapsPass::UpdateChildren(this=0x00007ffdf858c010) at EsmShadowmapsPass.cpp:104:13
frame #1: 0x00007fffbbd4cc94 libAtom_Feature_Common.Editor.so`AZ::Render::EsmShadowmapsPass::FrameBeginInternal(this=0x00007ffdf858c010, params=FramePrepareParams @ 0x00007fffffff9ea0) at EsmShadowmapsPass.cpp:96:13
frame #2: 0x00007fffb4a9d1cb libAtom_RPI.Editor.so`AZ::RPI::Pass::FrameBegin(this=0x00007ffdf858c010, params=FramePrepareParams @ 0x00007fffffff9fd0) at Pass.cpp:1294:13
frame #3: 0x00007fffb4a9cfef libAtom_RPI.Editor.so`AZ::RPI::ParentPass::FrameBeginInternal(this=0x00000000076eb010, params=FramePrepareParams @ 0x00007fffffffa090) at ParentPass.cpp:312:24
frame #4: 0x00007fffb4a9d1cb libAtom_RPI.Editor.so`AZ::RPI::Pass::FrameBegin(this=0x00000000076eb010, params=FramePrepareParams @ 0x00007fffffffa1c0) at Pass.cpp:1294:13
frame #5: 0x00007fffb4a9cfef libAtom_RPI.Editor.so`AZ::RPI::ParentPass::FrameBeginInternal(t
option java_package = "org.terasology.protobuf";
option java_outer_classname = "EntityData";
option optimize_for = SPEED;
message Value {
repeated double double = 1 [packed=true];
repeated float float = 2 [packed=true];
repeated sint32 integer = 3 [packed=true];
repeated sint64 long = 4 [packed=true];
repeated bool boolean = 5 [packed=true];
// Copyright 2021 The Terasology Foundation
// SPDX-License-Identifier: Apache-2.0
package org.terasology.engine.rendering.assets.mesh.vertex;
import org.joml.Vector3f;
import org.joml.Vector3i;
import org.lwjgl.opengl.GL30;
import java.nio.ByteBuffer;
USER-GIVEN INFO:
It is a sudden crash and I was just going forward and doing nothing special
ERROR STACK TRACE:
10:15:50.914 [main] WARN org.reflections.Reflections - given scan urls are empty. set urls in the configuration
10:15:50.933 [main] INFO o.t.e.m.loadProcesses.RegisterMods - Activating module: engine:4.3.0-SNAPSHOT
10:15:50.933 [main] INFO o.t.e.m.loadProcesses.RegisterMods - Activating module: BiomesAPI:4.1.1-SNAPSHOT
10:15:50.934 [main] INFO o.t.e.m.loadProcesses.RegisterMods - Activating module: CoreAssets:2.3.0-SNAPSHOT
10:15:50.934 [main] INFO o.t.e.m.loadProcesses.RegisterMods - Activating module: CoreWorlds:2.0.0-SNAPSHOT
getWorld:68, GraphFacetImpl (org.terasology.polyworld.graph)
process:56, WhittakerBiomeProvider (org.terasology.polyworld.biome)
lambda$getFacet$1:50, RegionImpl (org.terasology.world.generation)
accept:-1, 603641467 (org.terasology.world.generation.RegionImpl$$Lambda$426)
accept:183, ForEachOps$ForEachOp$OfRef (java.util.stream)
accept:177, ReferencePipeline$2$1 (java.util.stream)
forEachRemaining:1655, ArrayList$ArrayListSpliterator (java.util)
copyInto:484, AbstractPipeline (java.util.stream)
wrapAndCopyInto:474, AbstractPipeline (java.util.stream)
evaluateSequential:150, ForEachOps$ForEachOp (java.util.stream)
#!/bin/bash
org=""
tg=""
for i in */; do
tg="$(git -C "$(pwd)/$i" status)";
if [[ $tg == *"modified"* ]]; then
echo "${i}";
fi;
done;
#!/bin/bash
org=""
tg=""
for i in */; do
tg="$(git -C "$(pwd)/$i" status)";
if [[ $tg == *"modified"* ]]; then
echo "${i}";
git -C "$(pwd)/$i" add -A .
git -C "$(pwd)/$i" checkout -b "feature/migrate-joml-ext"
git -C "$(pwd)/$i" commit -m $'feat(JOML): migrate joml to 1.10.0 and 1.0.0-SNAPSHOT for geometry \n \n PR: https://github.com/MovingBlocks/Terasology/pull/4413'