Skip to content

Commit 9f0f68a

Browse files
committed
Implement glDrawEements
1 parent 86c16c5 commit 9f0f68a

File tree

2 files changed

+46
-7
lines changed

2 files changed

+46
-7
lines changed

jasmine-opengl.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function GL_Symbol(constant) { return GL_Symbols[constant] || constant; }
3434
function OpenGL() {
3535
"use strict";
3636

37-
var DEBUG = 0; // 0 = off, 1 = some, 2 = lots
37+
var DEBUG = 1; // 0 = off, 1 = some, 2 = lots
3838

3939
var identity = new Float32Array([
4040
1, 0, 0, 0,
@@ -1579,7 +1579,7 @@ function OpenGL() {
15791579
var numLights = (shaderFlags & NUM_LIGHTS_MASK) >> NUM_LIGHTS_SHIFT;
15801580
if (numLights > 0) {
15811581
if (shaderFlags & HAS_NORMAL) {
1582-
src.push("varying vec3 vNormal;");
1582+
src.push("attribute vec3 aNormal;");
15831583
} else {
15841584
src.push("uniform vec3 uNormal;");
15851585
}
@@ -1607,7 +1607,7 @@ function OpenGL() {
16071607
src.push(" vec4 position = uModelView * vec4(aPosition, 1.0);");
16081608
if (numLights > 0) {
16091609
if (shaderFlags & HAS_NORMAL) {
1610-
src.push(" vec3 normal = normalize(vNormal);");
1610+
src.push(" vec3 normal = normalize(aNormal);");
16111611
} else {
16121612
src.push(" vec3 normal = normalize(uNormal);");
16131613
}

squeak.js

+43-4
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"version", {
118118
// system attributes
119119
vmVersion: "SqueakJS 1.1.2",
120-
vmDate: "2023-12-20", // Maybe replace at build time?
120+
vmDate: "2023-12-22", // Maybe replace at build time?
121121
vmBuild: "unknown", // or replace at runtime by last-modified?
122122
vmPath: "unknown", // Replace at runtime
123123
vmFile: "vm.js",
@@ -9788,16 +9788,55 @@
97889788
// - other ffi* for private methods of this module
97899789
// - primitiveCalloutToFFI: old callout primitive (not in SqueakFFIPrims)
97909790
ffi_lastError: 0,
9791+
9792+
ffiModules: {}, // map library name to module name
9793+
97919794
ffiDoCallout: function(argCount, extLibFunc, stArgs) {
97929795
this.ffi_lastError = Squeak.FFIErrorGenericError;
9793-
var modName = extLibFunc.pointers[Squeak.ExtLibFunc_module].bytesAsString();
9796+
var libName = extLibFunc.pointers[Squeak.ExtLibFunc_module].bytesAsString();
97949797
var funcName = extLibFunc.pointers[Squeak.ExtLibFunc_name].bytesAsString();
9798+
9799+
if (!libName) libName = "libc"; // default to libc
9800+
9801+
var modName = this.ffiModules[libName];
9802+
if (modName === undefined) {
9803+
if (!Squeak.externalModules[libName]) {
9804+
var prefixes = ["", "lib"];
9805+
var suffixes = ["", ".so",
9806+
".so.9", ".9", ".so.8", ".8", ".so.7", ".7",
9807+
".so.6", ".6", ".so.5", ".5", ".so.4", ".4",
9808+
".so.3", ".3", ".so.2", ".2", ".so.1", ".1"];
9809+
loop: for (var p = 0; p < prefixes.length; p++) {
9810+
var prefix = prefixes[p];
9811+
for (var s = 0; s < suffixes.length; s++) {
9812+
var suffix = suffixes[s];
9813+
if (Squeak.externalModules[prefix + libName + suffix]) {
9814+
modName = prefix + libName + suffix;
9815+
break loop;
9816+
}
9817+
if (prefix && libName.startsWith(prefix) && Squeak.externalModules[libName.slice(prefix.length) + suffix]) {
9818+
modName = libName.slice(prefix.length) + suffix;
9819+
break loop;
9820+
}
9821+
if (suffix && libName.endsWith(suffix) && Squeak.externalModules[prefix + libName.slice(0, -suffix.length)]) {
9822+
modName = prefix + libName.slice(0, -suffix.length);
9823+
break loop;
9824+
}
9825+
}
9826+
}
9827+
if (modName) console.log("FFI: found library " + libName + " as module " + modName);
9828+
// there still is a chance loadModuleDynamically will find it under libName
9829+
}
9830+
if (!modName) modName = libName; // default to libName
9831+
this.ffiModules[libName] = modName;
9832+
}
9833+
97959834
var mod = this.loadedModules[modName];
97969835
if (mod === undefined) { // null if earlier load failed
97979836
mod = this.loadModule(modName);
97989837
this.loadedModules[modName] = mod;
97999838
if (!mod) {
9800-
this.vm.warnOnce('FFI: module not found: ' + modName);
9839+
this.vm.warnOnce('FFI: library not found: ' + libName);
98019840
}
98029841
}
98039842
if (!mod) {
@@ -9812,7 +9851,7 @@
98129851
}
98139852
var jsResult;
98149853
if (!(funcName in mod)) {
9815-
if (this.vm.warnOnce('FFI: function not found: ' + modName + '::' + funcName)) {
9854+
if (this.vm.warnOnce('FFI: function not found: ' + libName + '::' + funcName)) {
98169855
console.warn(jsArgs);
98179856
}
98189857
if (mod.ffiFunctionNotFoundHandler) {

0 commit comments

Comments
 (0)