Initial checkin of Pika from heckimp
15
plug-ins/lighting/images/lighting-icon-images.gresource.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<gresources>
|
||||
<gresource prefix="/technology.heckin/lighting/icons">
|
||||
<file preprocess="to-pixdata">lighting-intensity-ambient-high.png</file>
|
||||
<file preprocess="to-pixdata">lighting-intensity-ambient-low.png</file>
|
||||
<file preprocess="to-pixdata">lighting-intensity-diffuse-high.png</file>
|
||||
<file preprocess="to-pixdata">lighting-intensity-diffuse-low.png</file>
|
||||
<file preprocess="to-pixdata">lighting-reflectivity-diffuse-high.png</file>
|
||||
<file preprocess="to-pixdata">lighting-reflectivity-diffuse-low.png</file>
|
||||
<file preprocess="to-pixdata">lighting-reflectivity-specular-high.png</file>
|
||||
<file preprocess="to-pixdata">lighting-reflectivity-specular-low.png</file>
|
||||
<file preprocess="to-pixdata">lighting-reflectivity-highlight-high.png</file>
|
||||
<file preprocess="to-pixdata">lighting-reflectivity-highlight-low.png</file>
|
||||
</gresource>
|
||||
</gresources>
|
BIN
plug-ins/lighting/images/lighting-intensity-ambient-high.png
Normal file
After Width: | Height: | Size: 725 B |
BIN
plug-ins/lighting/images/lighting-intensity-ambient-low.png
Normal file
After Width: | Height: | Size: 918 B |
BIN
plug-ins/lighting/images/lighting-intensity-diffuse-high.png
Normal file
After Width: | Height: | Size: 829 B |
BIN
plug-ins/lighting/images/lighting-intensity-diffuse-low.png
Normal file
After Width: | Height: | Size: 504 B |
BIN
plug-ins/lighting/images/lighting-reflectivity-diffuse-high.png
Normal file
After Width: | Height: | Size: 805 B |
BIN
plug-ins/lighting/images/lighting-reflectivity-diffuse-low.png
Normal file
After Width: | Height: | Size: 441 B |
After Width: | Height: | Size: 822 B |
BIN
plug-ins/lighting/images/lighting-reflectivity-highlight-low.png
Normal file
After Width: | Height: | Size: 805 B |
BIN
plug-ins/lighting/images/lighting-reflectivity-specular-high.png
Normal file
After Width: | Height: | Size: 842 B |
BIN
plug-ins/lighting/images/lighting-reflectivity-specular-low.png
Normal file
After Width: | Height: | Size: 800 B |
18
plug-ins/lighting/images/meson.build
Normal file
@ -0,0 +1,18 @@
|
||||
stock_icons = [
|
||||
'lighting-intensity-ambient-high.png',
|
||||
'lighting-intensity-ambient-low.png',
|
||||
'lighting-intensity-diffuse-high.png',
|
||||
'lighting-intensity-diffuse-low.png',
|
||||
'lighting-reflectivity-diffuse-high.png',
|
||||
'lighting-reflectivity-diffuse-low.png',
|
||||
'lighting-reflectivity-highlight-high.png',
|
||||
'lighting-reflectivity-highlight-low.png',
|
||||
'lighting-reflectivity-specular-high.png',
|
||||
'lighting-reflectivity-specular-low.png',
|
||||
]
|
||||
|
||||
lighting_icon_sources = gnome.compile_resources(
|
||||
'lighting-icon-images',
|
||||
'lighting-icon-images.gresource.xml',
|
||||
# source_dir: meson.current_source_directory(),
|
||||
)
|