mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00

- Remove Tauri client. It was useful when initially prototyping the Web Component, but now it’s more of a maintenance burden. It’s notably not convenient to check in CI. Since we now have another native alternative that does not require any GPU (`ironrdp-client`), it’s probably a good time to part ways. - Move wasm package into the workspace. - Move Rust crates into a `crates` subfolder. - Introduce `xtask` crate for free-form automation.
9 lines
No EOL
186 B
GLSL
9 lines
No EOL
186 B
GLSL
precision lowp float;
|
|
|
|
varying vec2 v_texCoord;
|
|
uniform sampler2D screen_texture;
|
|
|
|
void main(void) {
|
|
vec4 color = texture2D(screen_texture, v_texCoord);
|
|
gl_FragColor = color;
|
|
} |