Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gegl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
128
Issues
128
List
Boards
Labels
Service Desk
Milestones
Merge Requests
10
Merge Requests
10
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gegl
Commits
d93f6b94
Commit
d93f6b94
authored
Dec 28, 2014
by
Jon Nordby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meta-json: Add initial test subgraph
parent
aebd7ac8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
147 additions
and
0 deletions
+147
-0
operations/json/dropshadow2.fbp
operations/json/dropshadow2.fbp
+16
-0
operations/json/dropshadow2.json
operations/json/dropshadow2.json
+131
-0
No files found.
operations/json/dropshadow2.fbp
0 → 100644
View file @
d93f6b94
INPORT=translate.X:X
INPORT=translate.Y:X
INPORT=color.VALUE:COLOR
INPORT=blur.STD_DEV_X:RADIUS
INPORT=input.OUTPUT:INPUT
OUTPORT=over.OUTPUT:OUTPUT
# FIXME: multiple export mapping? INPORT=blur.STD-DEV-Y:RADIUS
# FIXME: allow - in property names, or map _ to - ?
# TODO: allow \ or \n between connections
input(gegl/noop) OUTPUT -> INPUT darken(gegl/src:in) OUTPUT -> INPUT blur(gegl/gaussian:blur) OUTPUT -> INPUT opacity(gegl/opacity) OUTPUT -> INPUT translate(gegl/translate) OUTPUT -> INPUT over(gegl/over)
input OUTPUT -> AUX over
color OUTPUT -> AUX darken
'rgb(0.0,0.0,0.0)' -> VALUE color
operations/json/dropshadow2.json
0 → 100644
View file @
d93f6b94
{
"processes"
:
{
"input"
:
{
"component"
:
"gegl/noop"
},
"darken"
:
{
"component"
:
"gegl/src"
,
"metadata"
:
{
"routes"
:
"in"
}
},
"blur"
:
{
"component"
:
"gegl/gaussian"
,
"metadata"
:
{
"routes"
:
"blur"
}
},
"opacity"
:
{
"component"
:
"gegl/opacity"
},
"translate"
:
{
"component"
:
"gegl/translate"
},
"over"
:
{
"component"
:
"gegl/over"
}
},
"connections"
:
[
{
"src"
:
{
"process"
:
"input"
,
"port"
:
"output"
},
"tgt"
:
{
"process"
:
"darken"
,
"port"
:
"input"
}
},
{
"src"
:
{
"process"
:
"darken"
,
"port"
:
"output"
},
"tgt"
:
{
"process"
:
"blur"
,
"port"
:
"input"
}
},
{
"src"
:
{
"process"
:
"blur"
,
"port"
:
"output"
},
"tgt"
:
{
"process"
:
"opacity"
,
"port"
:
"input"
}
},
{
"src"
:
{
"process"
:
"opacity"
,
"port"
:
"output"
},
"tgt"
:
{
"process"
:
"translate"
,
"port"
:
"input"
}
},
{
"src"
:
{
"process"
:
"translate"
,
"port"
:
"output"
},
"tgt"
:
{
"process"
:
"over"
,
"port"
:
"input"
}
},
{
"src"
:
{
"process"
:
"input"
,
"port"
:
"output"
},
"tgt"
:
{
"process"
:
"over"
,
"port"
:
"aux"
}
},
{
"src"
:
{
"process"
:
"color"
,
"port"
:
"output"
},
"tgt"
:
{
"process"
:
"darken"
,
"port"
:
"aux"
}
},
{
"data"
:
"rgb(0.0,0.0,0.0)"
,
"tgt"
:
{
"process"
:
"color"
,
"port"
:
"value"
}
}
],
"inports"
:
{
"x"
:
{
"process"
:
"translate"
,
"port"
:
"y"
},
"color"
:
{
"process"
:
"color"
,
"port"
:
"value"
},
"radius"
:
{
"process"
:
"blur"
,
"port"
:
"std_dev_x"
},
"input"
:
{
"process"
:
"input"
,
"port"
:
"output"
}
},
"outports"
:
{
"output"
:
{
"process"
:
"over"
,
"port"
:
"output"
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment