picrate 2.5.0-java → 2.5.1-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.mvn/wrapper/maven-wrapper.properties +1 -1
- data/CHANGELOG.md +2 -0
- data/README.md +1 -1
- data/docs/_posts/2018-05-06-install_jruby.md +2 -2
- data/docs/_posts/2019-11-11-getting_started_buster.md +1 -1
- data/docs/_posts/2020-05-11-getting_started_manjaro.md +13 -4
- data/docs/about.md +1 -1
- data/lib/picrate/app.rb +0 -6
- data/lib/picrate/helper_methods.rb +6 -6
- data/lib/picrate/version.rb +1 -1
- data/lib/{picrate-2.5.0.jar → picrate-2.5.1.jar} +0 -0
- data/pom.rb +4 -5
- data/pom.xml +5 -8
- data/src/main/java/processing/core/PApplet.java +1 -1
- data/src/main/java/processing/opengl/PGraphicsOpenGL.java +13 -13
- data/src/main/java/processing/opengl/PSurfaceJOGL.java +4 -4
- data/src/main/{java/processing/opengl → resources}/cursors/arrow.png +0 -0
- data/src/main/{java/processing/opengl → resources}/cursors/cross.png +0 -0
- data/src/main/{java/processing/opengl → resources}/cursors/hand.png +0 -0
- data/src/main/{java/processing/opengl → resources}/cursors/license.txt +0 -0
- data/src/main/{java/processing/opengl → resources}/cursors/move.png +0 -0
- data/src/main/{java/processing/opengl → resources}/cursors/text.png +0 -0
- data/src/main/{java/processing/opengl → resources}/cursors/wait.png +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/ColorFrag.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/ColorVert.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/LightFrag.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/LightVert.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/LineFrag.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/LineVert.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/MaskFrag.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/PointFrag.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/PointVert.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/TexFrag.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/TexLightFrag.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/TexLightVert.glsl +0 -0
- data/src/main/{java/processing/opengl → resources}/shaders/TexVert.glsl +0 -0
- metadata +24 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3f8a1c6f427e8d6496ffa52f10da57bc8763f8dd92d52074652409658684fba
|
4
|
+
data.tar.gz: b0e3cf6d3c457bea3fdda0642d10c0a443528752b13e1ac2dd767f2bb3c0798a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1de09c1115c514a845a63b00d777784550c2d1a1c20662ed59974727460652927ab7706d7380433cea31fd1f7d67c7b31f494bd566b990c9e94152120766b543
|
7
|
+
data.tar.gz: 290f982b1b70b41e58de89182b2603f96c6276f1381d19f10b5d3827aebea20f81af3c609cb07fda2a662a21b02dae5ce72dbd18b9adda12970bf0eca87865c8
|
@@ -1,2 +1,2 @@
|
|
1
|
-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.
|
1
|
+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.3/apache-maven-3.8.3-bin.zip
|
2
2
|
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
v2.5.1 Update to JRuby-9.3.1.0, under the hood changes in how we access java fields, no using `field` in place of `declared_field`, possible since JRuby-9.3.0.0 required since JRuby-9.3.1.0.
|
2
|
+
|
1
3
|
v2.5.0 Update to JRuby-9.3.0.0.
|
2
4
|
|
3
5
|
v2.4.2 Update to JRuby-9.2.19, getting ready for JRuby-9.3+.
|
data/README.md
CHANGED
@@ -19,7 +19,7 @@ Requires java to build (and [jogl-2.4.0-rc jars][jogl_jars]), but uses a maven w
|
|
19
19
|
```bash
|
20
20
|
cd PiCrate # or whatever you call it
|
21
21
|
rake # assumes an installed version of vanilla processing
|
22
|
-
jgem install picrate-2.5.
|
22
|
+
jgem install picrate-2.5.1-java.gem
|
23
23
|
|
24
24
|
```
|
25
25
|
To create a template sketch:-
|
@@ -14,7 +14,7 @@ Get the latest version from [http://jruby.org/download][download]
|
|
14
14
|
|
15
15
|
```bash
|
16
16
|
cd /opt
|
17
|
-
sudo tar xzvf /pathToDownload/jruby-bin-9.3.
|
17
|
+
sudo tar xzvf /pathToDownload/jruby-bin-9.3.1.0.tar.gz
|
18
18
|
```
|
19
19
|
|
20
20
|
Then use the excellent `update-alternatives` tool to provide symbolic links to `jruby`, `jgem`, `jirb` and `rake` especially if you haven't installed `mri` ruby.
|
@@ -42,5 +42,5 @@ The [picrate2_install.sh][bash] script currently installs jruby-9.3.0.0 and picr
|
|
42
42
|
|
43
43
|
If you know better please post on wiki
|
44
44
|
|
45
|
-
[download]:"https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.
|
45
|
+
[download]:"https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.1.0/jruby-dist-9.3.1.0-bin.tar.gz"
|
46
46
|
[bash]:https://gist.github.com/monkstone/6ae9840d7b7008c177b4a9f589d14ec6
|
@@ -5,19 +5,28 @@ date: 2020-05-11 07:34:13
|
|
5
5
|
categories: PiCrate update
|
6
6
|
permalink: /getting_manjaro/
|
7
7
|
---
|
8
|
-
If Manjaro does not come with a pre-installed java, then the first step is to install a `jdk` the distro version (
|
8
|
+
If Manjaro does not come with a pre-installed java, then the first step is to install a `jdk` the distro version (jdk16) should work.
|
9
9
|
|
10
10
|
```bash
|
11
|
-
sudo pacman -S
|
11
|
+
sudo pacman -S jre-openjdk # current distro version jdk16
|
12
12
|
```
|
13
13
|
You can also use pacman to install jruby
|
14
14
|
```bash
|
15
|
-
sudo pacman -S jruby # current version jruby-9.
|
15
|
+
sudo pacman -S jruby # current version jruby-9.3.0.0
|
16
16
|
```
|
17
17
|
It is probably a good idea to create a local gem store (rather needing to use sudo to install gems)
|
18
|
+
```bash
|
19
|
+
sudo pacman -S vim # all you need if your happy with vim
|
20
|
+
```
|
21
|
+
Vim is not installed by default
|
22
|
+
```bash
|
23
|
+
sudo pacman -S geany # if you prefer a GUI
|
24
|
+
```
|
25
|
+
Geany is not installed by default
|
26
|
+
|
18
27
|
|
19
28
|
```bash
|
20
|
-
mkdir -p ~/.gem/ruby/2.
|
29
|
+
mkdir -p ~/.gem/ruby/2.6.0 # current MRI version supported by jruby
|
21
30
|
```
|
22
31
|
Now set your `GEM_HOME`, `GEM_PATH` and amend your `PATH` as follows:-
|
23
32
|
|
data/docs/about.md
CHANGED
@@ -4,7 +4,7 @@ title: About
|
|
4
4
|
permalink: /about/
|
5
5
|
---
|
6
6
|

|
7
|
-
PiCrate is both a `library` and an `app` that allows you to create [processing][processing] sketches in ruby on the [RaspberryPI][PI] (or 64 bit linux). PiCrate is available as a gem (from [rubygems][rubygems]), it requires [JRuby][jruby] to both install and run. It does not depend on a vanilla processing install
|
7
|
+
PiCrate is both a `library` and an `app` that allows you to create [processing][processing] sketches in ruby on the [RaspberryPI][PI] (or 64 bit linux). PiCrate is available as a gem (from [rubygems][rubygems]), it requires [JRuby][jruby] to both install and run. It does not depend on a vanilla processing install.Tested on RaspbianOS on RaspberryPI3B+ and RaspberryPI4, also works on Manajaro distro (64bit) on RaspberryPI4.
|
8
8
|
|
9
9
|
#### Executable ####
|
10
10
|
|
data/lib/picrate/app.rb
CHANGED
@@ -159,12 +159,6 @@ module Processing
|
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|
162
|
-
def proxy_java_fields
|
163
|
-
fields = %w[sketchPath key frameRate mousePressed keyPressed]
|
164
|
-
methods = fields.map { |field| java_class.declared_field(field) }
|
165
|
-
@declared_fields = Hash[fields.zip(methods)]
|
166
|
-
end
|
167
|
-
|
168
162
|
# When certain special methods get added to the sketch, we need to let
|
169
163
|
# Processing call them by their expected Java names.
|
170
164
|
def method_added(method_name) #:nodoc:
|
@@ -117,14 +117,14 @@ module Processing
|
|
117
117
|
# some methods. Add to this list as needed.
|
118
118
|
def proxy_java_fields
|
119
119
|
fields = %w[key frameRate mousePressed keyPressed]
|
120
|
-
methods = fields.map { |field| java_class.
|
121
|
-
@
|
120
|
+
methods = fields.map { |field| java_class.field(field) }
|
121
|
+
@jfields = Hash[fields.zip(methods)]
|
122
122
|
end
|
123
123
|
|
124
124
|
# Fix java conversion problems getting the last key
|
125
125
|
# If it's ASCII, return the character, otherwise the integer
|
126
126
|
def key
|
127
|
-
int = @
|
127
|
+
int = @jfields['key'].value(java_self)
|
128
128
|
int < 256 ? int.chr : int
|
129
129
|
end
|
130
130
|
|
@@ -161,19 +161,19 @@ module Processing
|
|
161
161
|
|
162
162
|
# frame_rate needs to support reading and writing
|
163
163
|
def frame_rate(fps = nil)
|
164
|
-
return @
|
164
|
+
return @jfields['frameRate'].value(java_self) unless fps
|
165
165
|
|
166
166
|
super(fps)
|
167
167
|
end
|
168
168
|
|
169
169
|
# Is the mouse pressed for this frame?
|
170
170
|
def mouse_pressed?
|
171
|
-
@
|
171
|
+
@jfields['mousePressed'].value(java_self)
|
172
172
|
end
|
173
173
|
|
174
174
|
# Is a key pressed for this frame?
|
175
175
|
def key_pressed?
|
176
|
-
@
|
176
|
+
@jfields['keyPressed'].value(java_self)
|
177
177
|
end
|
178
178
|
|
179
179
|
private
|
data/lib/picrate/version.rb
CHANGED
Binary file
|
data/pom.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
project 'picrate', 'http://maven.apache.org' do
|
4
4
|
model_version '4.0.0'
|
5
|
-
id 'ruby-processing:picrate:2.5.
|
5
|
+
id 'ruby-processing:picrate:2.5.1'
|
6
6
|
packaging 'jar'
|
7
7
|
|
8
8
|
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
|
@@ -24,7 +24,7 @@ project 'picrate', 'http://maven.apache.org' do
|
|
24
24
|
issue_management 'https://github.com/ruby-processing/PiCrate/issues', 'Github'
|
25
25
|
# Need to update to jogl 2.4.1 as soon as available, then make a dependency
|
26
26
|
properties('jogl.version' => '2.3.2',
|
27
|
-
'jruby.version' => '9.3.
|
27
|
+
'jruby.version' => '9.3.1.0',
|
28
28
|
'batik.version' => '1.14',
|
29
29
|
'itextpdf.version' => '5.5.13.2',
|
30
30
|
'jruby.api' => 'http://jruby.org/apidocs/',
|
@@ -34,7 +34,7 @@ project 'picrate', 'http://maven.apache.org' do
|
|
34
34
|
'project.build.sourceEncoding' => 'UTF-8',
|
35
35
|
'polyglot.dump.pom' => 'pom.xml')
|
36
36
|
|
37
|
-
jar 'org.jruby:jruby-base
|
37
|
+
jar 'org.jruby:jruby-base:${jruby.version}'
|
38
38
|
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
|
39
39
|
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
|
40
40
|
jar 'org.processing:video:3.0.2'
|
@@ -83,11 +83,10 @@ end
|
|
83
83
|
build do
|
84
84
|
resource do
|
85
85
|
directory '${source.directory}/main/java'
|
86
|
-
includes '**/**/*.glsl', '**/*.jnilib'
|
87
86
|
excludes '**/**/*.java'
|
88
87
|
end
|
89
88
|
resource do
|
90
89
|
directory '${source.directory}/main/resources'
|
91
|
-
includes '**/*.png', '
|
90
|
+
includes '**/*.png', '**/*.txt', '**/*.glsl'
|
92
91
|
end
|
93
92
|
end
|
data/pom.xml
CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
12
12
|
<groupId>ruby-processing</groupId>
|
13
13
|
<artifactId>picrate</artifactId>
|
14
|
-
<version>2.5.
|
14
|
+
<version>2.5.1</version>
|
15
15
|
<name>picrate</name>
|
16
16
|
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
|
17
17
|
<url>http://maven.apache.org</url>
|
@@ -68,7 +68,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
68
68
|
<itextpdf.version>5.5.13.2</itextpdf.version>
|
69
69
|
<jogl.version>2.3.2</jogl.version>
|
70
70
|
<jruby.api>http://jruby.org/apidocs/</jruby.api>
|
71
|
-
<jruby.version>9.3.
|
71
|
+
<jruby.version>9.3.1.0</jruby.version>
|
72
72
|
<picrate.basedir>${project.basedir}</picrate.basedir>
|
73
73
|
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
|
74
74
|
<processing.api>http://processing.github.io/processing-javadocs/core/</processing.api>
|
@@ -79,7 +79,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
79
79
|
<dependency>
|
80
80
|
<groupId>org.jruby</groupId>
|
81
81
|
<artifactId>jruby-base</artifactId>
|
82
|
-
<version
|
82
|
+
<version>${jruby.version}</version>
|
83
83
|
</dependency>
|
84
84
|
<dependency>
|
85
85
|
<groupId>org.jogamp.jogl</groupId>
|
@@ -111,10 +111,6 @@ DO NOT MODIFY - GENERATED CODE
|
|
111
111
|
<resources>
|
112
112
|
<resource>
|
113
113
|
<directory>${source.directory}/main/java</directory>
|
114
|
-
<includes>
|
115
|
-
<include>**/**/*.glsl</include>
|
116
|
-
<include>**/*.jnilib</include>
|
117
|
-
</includes>
|
118
114
|
<excludes>
|
119
115
|
<exclude>**/**/*.java</exclude>
|
120
116
|
</excludes>
|
@@ -123,7 +119,8 @@ DO NOT MODIFY - GENERATED CODE
|
|
123
119
|
<directory>${source.directory}/main/resources</directory>
|
124
120
|
<includes>
|
125
121
|
<include>**/*.png</include>
|
126
|
-
<include
|
122
|
+
<include>**/*.txt</include>
|
123
|
+
<include>**/*.glsl</include>
|
127
124
|
</includes>
|
128
125
|
</resource>
|
129
126
|
</resources>
|
@@ -167,8 +167,8 @@ public class PApplet implements PConstants {
|
|
167
167
|
* that people use the sketchPath() method and it's inited properly. Call
|
168
168
|
* sketchPath() once to set the default.
|
169
169
|
*/
|
170
|
+
|
170
171
|
private String sketchPath;
|
171
|
-
// public String sketchPath;
|
172
172
|
|
173
173
|
static final boolean DEBUG = false;
|
174
174
|
// static final boolean DEBUG = true;
|
@@ -181,32 +181,32 @@ public class PGraphicsOpenGL extends PGraphics {
|
|
181
181
|
// Shaders
|
182
182
|
|
183
183
|
static protected URL defColorShaderVertURL =
|
184
|
-
PGraphicsOpenGL.class.getResource("/
|
184
|
+
PGraphicsOpenGL.class.getResource("/shaders/ColorVert.glsl");
|
185
185
|
static protected URL defTextureShaderVertURL =
|
186
|
-
PGraphicsOpenGL.class.getResource("/
|
186
|
+
PGraphicsOpenGL.class.getResource("/shaders/TexVert.glsl");
|
187
187
|
static protected URL defLightShaderVertURL =
|
188
|
-
PGraphicsOpenGL.class.getResource("/
|
188
|
+
PGraphicsOpenGL.class.getResource("/shaders/LightVert.glsl");
|
189
189
|
static protected URL defTexlightShaderVertURL =
|
190
|
-
PGraphicsOpenGL.class.getResource("/
|
190
|
+
PGraphicsOpenGL.class.getResource("/shaders/TexLightVert.glsl");
|
191
191
|
static protected URL defColorShaderFragURL =
|
192
|
-
PGraphicsOpenGL.class.getResource("/
|
192
|
+
PGraphicsOpenGL.class.getResource("/shaders/ColorFrag.glsl");
|
193
193
|
static protected URL defTextureShaderFragURL =
|
194
|
-
PGraphicsOpenGL.class.getResource("/
|
194
|
+
PGraphicsOpenGL.class.getResource("/shaders/TexFrag.glsl");
|
195
195
|
static protected URL defLightShaderFragURL =
|
196
|
-
PGraphicsOpenGL.class.getResource("/
|
196
|
+
PGraphicsOpenGL.class.getResource("/shaders/LightFrag.glsl");
|
197
197
|
static protected URL defTexlightShaderFragURL =
|
198
|
-
PGraphicsOpenGL.class.getResource("/
|
198
|
+
PGraphicsOpenGL.class.getResource("/shaders/TexLightFrag.glsl");
|
199
199
|
|
200
200
|
static protected URL defLineShaderVertURL =
|
201
|
-
PGraphicsOpenGL.class.getResource("/
|
201
|
+
PGraphicsOpenGL.class.getResource("/shaders/LineVert.glsl");
|
202
202
|
static protected URL defLineShaderFragURL =
|
203
|
-
PGraphicsOpenGL.class.getResource("/
|
203
|
+
PGraphicsOpenGL.class.getResource("/shaders/LineFrag.glsl");
|
204
204
|
static protected URL defPointShaderVertURL =
|
205
|
-
PGraphicsOpenGL.class.getResource("/
|
205
|
+
PGraphicsOpenGL.class.getResource("/shaders/PointVert.glsl");
|
206
206
|
static protected URL defPointShaderFragURL =
|
207
|
-
PGraphicsOpenGL.class.getResource("/
|
207
|
+
PGraphicsOpenGL.class.getResource("/shaders/PointFrag.glsl");
|
208
208
|
static protected URL maskShaderFragURL =
|
209
|
-
PGraphicsOpenGL.class.getResource("/
|
209
|
+
PGraphicsOpenGL.class.getResource("/shaders/MaskFrag.glsl");
|
210
210
|
|
211
211
|
protected PShader defColorShader;
|
212
212
|
protected PShader defTextureShader;
|
@@ -944,10 +944,10 @@ public class PSurfaceJOGL implements PSurface {
|
|
944
944
|
boolean hide = (sketch != null) &&
|
945
945
|
(PApplet.platform == PConstants.WINDOWS);
|
946
946
|
if (hide) setVisible(false);
|
947
|
-
|
947
|
+
|
948
948
|
ShimAWT.selectFolderImpl(prompt, callbackMethod, file,
|
949
949
|
callbackObject, null);
|
950
|
-
|
950
|
+
|
951
951
|
if (hide) setVisible(true);
|
952
952
|
});
|
953
953
|
}
|
@@ -963,7 +963,7 @@ public class PSurfaceJOGL implements PSurface {
|
|
963
963
|
String name = cursorNames.get(kind);
|
964
964
|
if (name != null) {
|
965
965
|
ImageIcon icon =
|
966
|
-
new ImageIcon(getClass().getResource("cursors/" + name + ".png"));
|
966
|
+
new ImageIcon(getClass().getResource("/cursors/" + name + ".png"));
|
967
967
|
PImage img = new PImageAWT(icon.getImage());
|
968
968
|
// Most cursors just use the center as the hotspot...
|
969
969
|
int x = img.width / 2;
|
@@ -1538,7 +1538,7 @@ public class PSurfaceJOGL implements PSurface {
|
|
1538
1538
|
// String name = cursorNames.get(kind);
|
1539
1539
|
// if (name != null) {
|
1540
1540
|
// ImageIcon icon
|
1541
|
-
// = new ImageIcon(getClass().getResource("cursors/" + name + ".png"));
|
1541
|
+
// = new ImageIcon(getClass().getResource("/cursors/" + name + ".png"));
|
1542
1542
|
// PImage img = new PImage(icon.getImage());
|
1543
1543
|
// // Most cursors just use the center as the hotspot...
|
1544
1544
|
// int x = img.width / 2;
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: picrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- monkstone
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -185,7 +185,7 @@ files:
|
|
185
185
|
- lib/jogl-all-natives-linux-amd64.jar
|
186
186
|
- lib/jogl-all-natives-linux-armv6hf.jar
|
187
187
|
- lib/jogl-all.jar
|
188
|
-
- lib/picrate-2.5.
|
188
|
+
- lib/picrate-2.5.1.jar
|
189
189
|
- lib/picrate.rb
|
190
190
|
- lib/picrate/app.rb
|
191
191
|
- lib/picrate/creators/parameters.rb
|
@@ -305,28 +305,15 @@ files:
|
|
305
305
|
- src/main/java/processing/opengl/PSurfaceJOGL.java
|
306
306
|
- src/main/java/processing/opengl/Texture.java
|
307
307
|
- src/main/java/processing/opengl/VertexBuffer.java
|
308
|
-
- src/main/java/processing/opengl/cursors/arrow.png
|
309
|
-
- src/main/java/processing/opengl/cursors/cross.png
|
310
|
-
- src/main/java/processing/opengl/cursors/hand.png
|
311
|
-
- src/main/java/processing/opengl/cursors/license.txt
|
312
|
-
- src/main/java/processing/opengl/cursors/move.png
|
313
|
-
- src/main/java/processing/opengl/cursors/text.png
|
314
|
-
- src/main/java/processing/opengl/cursors/wait.png
|
315
|
-
- src/main/java/processing/opengl/shaders/ColorFrag.glsl
|
316
|
-
- src/main/java/processing/opengl/shaders/ColorVert.glsl
|
317
|
-
- src/main/java/processing/opengl/shaders/LightFrag.glsl
|
318
|
-
- src/main/java/processing/opengl/shaders/LightVert.glsl
|
319
|
-
- src/main/java/processing/opengl/shaders/LineFrag.glsl
|
320
|
-
- src/main/java/processing/opengl/shaders/LineVert.glsl
|
321
|
-
- src/main/java/processing/opengl/shaders/MaskFrag.glsl
|
322
|
-
- src/main/java/processing/opengl/shaders/PointFrag.glsl
|
323
|
-
- src/main/java/processing/opengl/shaders/PointVert.glsl
|
324
|
-
- src/main/java/processing/opengl/shaders/TexFrag.glsl
|
325
|
-
- src/main/java/processing/opengl/shaders/TexLightFrag.glsl
|
326
|
-
- src/main/java/processing/opengl/shaders/TexLightVert.glsl
|
327
|
-
- src/main/java/processing/opengl/shaders/TexVert.glsl
|
328
308
|
- src/main/java/processing/pdf/PGraphicsPDF.java
|
329
309
|
- src/main/java/processing/svg/PGraphicsSVG.java
|
310
|
+
- src/main/resources/cursors/arrow.png
|
311
|
+
- src/main/resources/cursors/cross.png
|
312
|
+
- src/main/resources/cursors/hand.png
|
313
|
+
- src/main/resources/cursors/license.txt
|
314
|
+
- src/main/resources/cursors/move.png
|
315
|
+
- src/main/resources/cursors/text.png
|
316
|
+
- src/main/resources/cursors/wait.png
|
330
317
|
- src/main/resources/icon/icon-128.png
|
331
318
|
- src/main/resources/icon/icon-16.png
|
332
319
|
- src/main/resources/icon/icon-256.png
|
@@ -335,6 +322,19 @@ files:
|
|
335
322
|
- src/main/resources/icon/icon-512.png
|
336
323
|
- src/main/resources/icon/icon-64.png
|
337
324
|
- src/main/resources/license.txt
|
325
|
+
- src/main/resources/shaders/ColorFrag.glsl
|
326
|
+
- src/main/resources/shaders/ColorVert.glsl
|
327
|
+
- src/main/resources/shaders/LightFrag.glsl
|
328
|
+
- src/main/resources/shaders/LightVert.glsl
|
329
|
+
- src/main/resources/shaders/LineFrag.glsl
|
330
|
+
- src/main/resources/shaders/LineVert.glsl
|
331
|
+
- src/main/resources/shaders/MaskFrag.glsl
|
332
|
+
- src/main/resources/shaders/PointFrag.glsl
|
333
|
+
- src/main/resources/shaders/PointVert.glsl
|
334
|
+
- src/main/resources/shaders/TexFrag.glsl
|
335
|
+
- src/main/resources/shaders/TexLightFrag.glsl
|
336
|
+
- src/main/resources/shaders/TexLightVert.glsl
|
337
|
+
- src/main/resources/shaders/TexVert.glsl
|
338
338
|
- test/color_group_test.rb
|
339
339
|
- test/deglut_spec_test.rb
|
340
340
|
- test/helper_methods_test.rb
|
@@ -369,7 +369,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
369
369
|
version: '0'
|
370
370
|
requirements:
|
371
371
|
- java runtime == 11+
|
372
|
-
rubygems_version: 3.2.
|
372
|
+
rubygems_version: 3.2.29
|
373
373
|
signing_key:
|
374
374
|
specification_version: 4
|
375
375
|
summary: ruby implementation of processing-3 on raspberrypi and linux64
|