mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-24 03:46:23 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
12 lines
313 B
Metal
12 lines
313 B
Metal
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
vertex float4 clearVertex(const device float2* vertexArray [[ buffer(0) ]], unsigned int vid [[ vertex_id ]]) {
|
|
return float4(vertexArray[vid], 0.0, 1.0);
|
|
}
|
|
|
|
fragment half4 clearFragment(const device float4 &color [[ buffer(0) ]]) {
|
|
return half4(color);
|
|
}
|