Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-15Viewport Compositor: Complete eager evaluation and draw enginetemp-viewport-compositor-compilerOmar Emara
2022-04-14Viewport Compositor: Do eager evaluation (Part 2)Omar Emara
2022-04-14Viewport Compositor: Add operations for unlinked inputsOmar Emara
This is needed in preparation for eager evaluation and it also simplifies things by removing pre execution logic in operations.
2022-04-13Viewport Compositor: Do eager evaluation (Part 1)Omar Emara
2022-04-11Viewport Compositor: Move input descriptor to operation headerOmar Emara
2022-04-11Viewport Compositor: Add stubs for unsupported nodesOmar Emara
2022-04-11Viewport Compositor: Move compiler to its own fileOmar Emara
2022-04-11Viewport Compositor: Move GPU material operation to its own fileOmar Emara
2022-04-11Viewport Compositor: Move GPU material node to its own fileOmar Emara
2022-04-08Viewport Compositor: Move node operation to its own fileOmar Emara
2022-04-08Viewport Compositor: Move operations to their own fileOmar Emara
2022-04-08Viewport Compositor: Move Result into its own fileOmar Emara
2022-04-08Viewport Compositor: Move domain into its own fileOmar Emara
2022-04-08Viewport Compositor: Move context to its own fileOmar Emara
2022-04-08Viewport Compositor: Separate texture pool into its own fileOmar Emara
2022-04-08Viewport Compositor: Move into its own moduleOmar Emara
This also accidentally includes refactoring of some of the components like the scheduler.
2022-04-07Viewport Compositor: Fix use after free resultsOmar Emara
2022-04-07Viewport Compositor: Add Translate nodeOmar Emara
2022-04-07Viewport Compositor: Add domain repetition supportOmar Emara
2022-04-01Viewport Compositor: Implement Rotate nodeOmar Emara
2022-04-01Viewport Compositor: Support realization interpolationsOmar Emara
2022-04-01Viewport Compositor: Fix off by one error in Crop nodeOmar Emara
2022-04-01Viewport Compositor: Implement Flip nodeOmar Emara
2022-04-01Viewport Compositor: Fix GCC compiler errorsOmar Emara
2022-04-01Viewport Compositor: Use SPDX license headerOmar Emara
2022-04-01Viewport Compositor: Implement Crop nodeOmar Emara
2022-04-01Viewport Compositor: Add missing domain priorityOmar Emara
2022-04-01Viewport Compositor: Implement Separate/Combine XYZOmar Emara
2022-03-31Viewport Compositor: Implement Filter nodeOmar Emara
2022-03-31Viewport Compositor: Clamp textures to edges at zeroOmar Emara
2022-03-31Viewport Compositor: Fix GPU material with no UBOOmar Emara
2022-03-31Viewport Compositor: Remove redundant input descriptorsOmar Emara
2022-03-31Viewport Compositor: Implement single value reductionOmar Emara
2022-03-31Viewport Compositor: Fix double scheduling of nodesOmar Emara
2022-03-31Viewport Compositor: Correct domain for viewer nodeOmar Emara
2022-03-31Viewport Compositor: Implement Split Viewer nodeOmar Emara
2022-03-31Viewport Compositor: Share realization shader infoOmar Emara
2022-03-31Viewport Compositor: Use bounded texture loadOmar Emara
2022-03-30Viewport Compositor: Implement movie clip nodeOmar Emara
2022-03-30Viewport Compositor: Share conversion shadersOmar Emara
2022-03-30Viewport Compositor: Implement Value nodeOmar Emara
2022-03-30Viewport Compositor: Implement RGB nodeOmar Emara
2022-03-30Viewport Compositor: Implement Scene Time nodeOmar Emara
2022-03-30Viewport Compositor: Ensure bounded loads in shadersOmar Emara
Bound texture loads by their size to support single results and non-robust GL implementations.
2022-03-30Viewport Compositor: Implement Time Curve nodeOmar Emara
2022-03-30Viewport Compositor: Allocate results on domainsOmar Emara
Allocate results on domains directly to avoid having to propogate domain transformation manually in all nodes.
2022-03-30Viewport Compositor: Delay memory barrier insertionOmar Emara
Insert memory barriers just before reading from textures as opposed to after writing to them.
2022-03-30Viewport Compositor: Declare domain priorities for nodesOmar Emara
Declare input domain priorities for existing nodes.
2022-03-30Viewport Compositor: Introduce input domain priorityOmar Emara
Inputs now declare a domain priority value instead of declaring themselves as domain inputs. This allows multiple inputs to assume domain inference role, and the best option is chosen based on the priority and other factors.
2022-03-29Viewport Compositor: Delay mapping input processorsOmar Emara
Delay mapping the result of the of the last input processor to the operation input until after adding all input processors.