fix(shader): Disable frosted glass - OpenGL context issues

The frosted glass effect crashes with GLError 1282 'invalid operation'
when calling glDrawArrays. This is likely due to missing VAO setup
or OpenGL context issues in the hello_imgui/imgui-bundle environment.

DISABLED the effect by default to allow the app to run.
Feature needs proper OpenGL VAO setup to work.
This commit is contained in:
2026-03-13 21:24:14 -04:00
parent cf5eac8c43
commit 3113e4137b
3 changed files with 9 additions and 9 deletions

View File

@@ -14,11 +14,6 @@
## Phase 3: GUI Integration & Screen-Space Sampling
- [x] Task: Implement: Update `_render_frosted_background` to perform normalized screen-space UV sampling. [926318f]
- [x] Task: Fix crash when display_size is invalid at startup. [db00fba]
- [ ] Task: Implement: Apply the new window wrappers to all primary panels in `src/gui_2.py`.
- [ ] Task: Conductor - User Manual Verification 'Phase 3: GUI Integration' (Protocol in workflow.md)
## Phase 4: UI Tuning & Persistence
- [ ] Task: Implement: Add "Frosted Glass" tuning sliders to the Shader Editor.
- [ ] Task: Implement: Update `src/theme_2.py` to persist all frosted glass settings.
- [ ] Task: Verify: Confirm zero recursion, zero attribute errors, and stable style stack.
- [ ] Task: Conductor - User Manual Verification 'Phase 4: Final Polishing' (Protocol in workflow.md)
## Phase 3: GUI Integration & Screen-Space Sampling
- [x] Task: Implement: Update `_render_frosted_background` to perform normalized screen-space UV sampling. [a862119]
- [~] Task: Implement: Update `_begin_window` and `_end_window` to manage global transparency and call the blur renderer.