Skip to content

Instantly share code, notes, and snippets.

From cc94550c7e27058cff8a9e6ad2007e4ce209fcc7 Mon Sep 17 00:00:00 2001
From: Fabio Anderegg <fabioa@kythera.ai>
Date: Fri, 16 Jul 2021 09:22:31 +0100
Subject: linux hack: do not try to submit command buffers until first window
resize event was handled
Signed-off-by: Fabio Anderegg <fabioa@kythera.ai>
diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChain.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChain.h
index 14e9968e4..d10fd7abb 100644
@fabioanderegg
fabioanderegg / README.md
Last active January 29, 2019 10:17
Check for missing translations in vue-i18n for all language .json files in src/locales/

Checks if all keys referenced in vue/ts/js files are contained in all locale .json files.

License: MIT

@fabioanderegg
fabioanderegg / Login.vue
Last active July 25, 2018 16:02
Vue.js JWT authentication with Django REST Framework Simple JWT as backend
<template>
<div class="login-container">
<div class="login">
<h1 class="heading">Login</h1>
<el-alert title="Invalid username or password" :closable="false" type="error" v-if="error" />
<el-form ref="form" :model="form" :rules="rules">
<el-form-item label="Username" prop="username">
<el-input v-model="form.username" @keyup.enter.native="submit"></el-input>
</el-form-item>
<el-form-item label="Password" prop="password">