Skip to content

Instantly share code, notes, and snippets.

View MightySeal's full-sized avatar

Konstantin Zolotov MightySeal

View GitHub Profile
@MightySeal
MightySeal / ShaderGlitchModifier.kt
Last active January 5, 2026 15:43
Compose shader glitch modifier
package io.mightyseal.glitch
import android.graphics.RuntimeShader
import androidx.compose.animation.core.Animatable
import androidx.compose.animation.core.LinearEasing
import androidx.compose.animation.core.tween
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.Stable
import androidx.compose.runtime.derivedStateOf
@MightySeal
MightySeal / links.md
Last active July 24, 2025 15:33
Compose shaders useful links
@MightySeal
MightySeal / GpGpuRenderer.kt
Last active October 29, 2024 22:44
From realtime CameraX filters to General Purpose GPU computing in simple steps, Droidcon London 2024
package io.mightyseal.shadercamera.gpgpu
import android.graphics.Bitmap
import android.opengl.EGL14
import android.opengl.EGLConfig
import android.opengl.EGLExt
import android.opengl.GLES31
import android.opengl.GLES32
import android.opengl.GLUtils
import io.mightyseal.shadercamera.camera.checkGlErrorOrThrow