Hajime Hoshi
|
869ca1e01f
|
internal/graphicsdriver/opengl/gl: fix a wrong comment
|
2023-01-07 03:41:02 +09:00 |
|
Hajime Hoshi
|
983e8abd46
|
internal/graphicsdriver/opengl/gl: bug fix: an unavailable library name might be chosen
Instead, let's try all the names with dlopen.
Updates #2523
|
2023-01-07 03:06:12 +09:00 |
|
Hajime Hoshi
|
df7b7b731e
|
internal/graphicsdriver/opengl/gl: bug fix: libGL.so might not exist in Steam
Instead, libGL.so.1 might exist. Use LD_LIBRARY_PATH and list the
candidates.
Closes #2523
|
2023-01-07 00:03:07 +09:00 |
|
Hajime Hoshi
|
0b9cbaa1ed
|
internal/shader: introduce integer vectors (ivec2, ivec3, ivec4)
Closes #1911
|
2022-11-21 00:31:23 +09:00 |
|
Hajime Hoshi
|
90213d5d80
|
internal/graphicsdriver/opengl: refactoring
|
2022-11-18 13:32:09 +09:00 |
|
Hajime Hoshi
|
74d9515345
|
internal/graphicsdriver/opengl: refactoring: move gl_js to gl/context_js.go
This unifies the OpenGL context interface for all the platforms.
|
2022-11-17 12:22:46 +09:00 |
|
Hajime Hoshi
|
9df4770d20
|
internal/graphicsdriver/opengl/gl: make Context closer to gomobile's Context
|
2022-11-17 01:23:27 +09:00 |
|
Hajime Hoshi
|
49fc1cfdc0
|
internal/graphicsdriver/opengl/gl: refactoring: replace some *iv functions with *i
|
2022-11-17 00:26:33 +09:00 |
|
Hajime Hoshi
|
098fed65d5
|
internal/graphicsdriver/opengl/gl: refactoring: replace GetIntegerv -> GetInteger
|
2022-11-16 23:59:28 +09:00 |
|
Hajime Hoshi
|
4c389c1752
|
internal/graphicsdriver/opengl/gl: bug fix: compile error
|
2022-11-15 02:41:59 +09:00 |
|
Hajime Hoshi
|
056042ca92
|
internal/graphicsdriver/opengl/gl: refactoring
|
2022-11-15 02:38:38 +09:00 |
|
Hajime Hoshi
|
0d8912e7ae
|
internal/graphicsdriver/opengl/gl: bug fix: failed to load OpenGL(ES).framework on iOS
This change also fixes the issue that *EXT functions are missing
in OpenGLES.framework.
Closes #2456
|
2022-11-15 02:33:45 +09:00 |
|
Hajime Hoshi
|
f4e63602d3
|
internal/graphicsdriver/opengl/gl: dynamic function loading for Android
Closes #2450
|
2022-11-14 23:23:50 +09:00 |
|
Hajime Hoshi
|
31af27b926
|
internal/graphicsdriver/opengl/gl: fix error message
|
2022-11-14 13:19:19 +09:00 |
|
Hajime Hoshi
|
f6f7ed3e3d
|
internal/graphicsdriver/opengl/gl: automatically choose OpenGL and OpenGL ES
Updates #292
|
2022-11-14 12:50:53 +09:00 |
|
Hajime Hoshi
|
fcf454ef20
|
internal/graphicsdriver/opengl/gl: use RTLD_LAZY instead of RTLD_NOW
See the discussion at #2453.
|
2022-11-14 04:46:11 +09:00 |
|
TotallyGamerJet
|
56ec19caa1
|
all: use RTLD_LAZY in dlopen for darwin (#2453)
dlopen requires either RTLD_LAZY or RTLD_NOW but there was neither.
Updates #1162
|
2022-11-14 04:44:51 +09:00 |
|
Hajime Hoshi
|
072e91d67f
|
internal/graphicsdriver/opengl/gl: dynamic-load functions with GLX
Updates #292
Updates #2450
|
2022-11-14 03:21:42 +09:00 |
|
Hajime Hoshi
|
f093996284
|
internal/graphicsdriver/opengl/gl: refactoring
|
2022-11-14 03:14:21 +09:00 |
|
Hajime Hoshi
|
e8810495cf
|
internal/graphicsdriver/opengl/gl: reland: refactoring: reduce opengles build tags
This is a reland of c9cff69dcb .
Updates #292
|
2022-11-14 02:21:18 +09:00 |
|
Hajime Hoshi
|
e87e4ffbd2
|
Revert "internal/graphicsdriver/opengl/gl: refactoring"
This reverts commit c9cff69dcb .
Reason: compmile error for browsers
|
2022-11-14 02:17:27 +09:00 |
|
Hajime Hoshi
|
c9cff69dcb
|
internal/graphicsdriver/opengl/gl: refactoring
|
2022-11-14 02:13:32 +09:00 |
|
Hajime Hoshi
|
94291ecb17
|
internal/graphicsdriver/opengl/gl: update copyrights
These files are already completely different from the original files.
|
2022-11-14 01:56:30 +09:00 |
|
Hajime Hoshi
|
39b8a66359
|
internal/graphicsdriver/opengl/gl: dynamic function load for OpenGL ES
Updates #292
Updates #2450
|
2022-11-13 08:48:26 -08:00 |
|
Hajime Hoshi
|
e5e7ceb688
|
internal/graphicsdriver/opengl/gl: refactoring
|
2022-11-13 23:10:20 +09:00 |
|
Hajime Hoshi
|
144d2374bf
|
internal/graphicsdriver/opengl/gl: remove 'egl' build tag
Probably nobody uses this.
|
2022-11-13 22:50:21 +09:00 |
|
Hajime Hoshi
|
5b96d93d13
|
internal/graphicsdriver/opengl/gl: refactoring
|
2022-11-13 22:26:13 +09:00 |
|
Hajime Hoshi
|
78f8ddbda8
|
internal/graphicsdriver/opengl/gl: load OpenGLES.framework if possible on Darwin
Closes #2449
|
2022-11-13 19:51:43 +09:00 |
|
Hajime Hoshi
|
b6ed95750b
|
internal/graphicsdriver/opengl: unify context_gl.go and context_gles.go
Closes #2451
|
2022-11-13 19:42:21 +09:00 |
|
Hajime Hoshi
|
b536b82109
|
internal/graphicsdriver/opengl/gl: hide concrete context types
|
2022-11-13 17:13:52 +09:00 |
|
Hajime Hoshi
|
0c5a77eaa4
|
internal/graphicsdriver/opengl/gles: integrate gles and glconst into gl
Updates #2451
|
2022-11-13 14:15:22 +09:00 |
|
Hajime Hoshi
|
bb30b85d29
|
internal/graphicsdriver/opengl/gl: simplify C code
|
2022-11-13 03:35:40 +09:00 |
|
Hajime Hoshi
|
c5fb6fa23f
|
internal/graphicsdriver/opengl/gl: remove unused functions
|
2022-11-13 02:35:45 +09:00 |
|
Hajime Hoshi
|
1ecac8d834
|
all: allow integer uniform variables for Kage shaders
Closes #2305
Updates #2448
|
2022-11-13 01:49:24 +09:00 |
|
Hajime Hoshi
|
cee948048d
|
internal/graphicsdriver/opengl: remove unused functions
|
2022-11-12 19:28:14 +09:00 |
|
Hajime Hoshi
|
303965e1a9
|
all: remove unnecessary copying
Copying []byte to string should copy the data if necessary, as the
Go specification assures that strings are immutable.
|
2022-11-11 00:28:47 +09:00 |
|
Hajime Hoshi
|
097adcf8b6
|
internal/graphicsdriver/opengl/gl: reladn: refactoring
This is a reland of a1ad87a262
|
2022-11-09 21:02:31 +09:00 |
|
Hajime Hoshi
|
96298bb59d
|
Revert "internal/graphicsdriver/opengl/gl: refactoring"
This reverts commit a1ad87a262 .
Reason: compile error
|
2022-11-09 18:27:06 +09:00 |
|
Hajime Hoshi
|
a1ad87a262
|
internal/graphicsdriver/opengl/gl: refactoring
|
2022-11-09 16:07:30 +09:00 |
|
Hajime Hoshi
|
915fff96f8
|
all: reduce reflect usages
|
2022-11-09 13:24:31 +09:00 |
|
Artem Yadelskyi
|
10415d417a
|
all: replace interface{} with any (#2430)
Closes #2429
|
2022-11-03 15:33:09 +09:00 |
|
Artem Yadelskyi
|
5b53cef59e
|
all: remove old // +build comments (#2431)
Closes #2325
|
2022-11-03 12:55:14 +09:00 |
|
Nathan Levett
|
f220eb729c
|
internal/graphicsdriver/opengl: move OpenGL constants to seperate package (#2408)
Closes #2389
|
2022-10-24 23:22:14 +09:00 |
|
Hajime Hoshi
|
09a7d39874
|
internal/graphicsdriver: add Blend struct
This is a preparation to specify blend factors and blend operators.
Updates #2382
|
2022-10-16 01:08:26 +09:00 |
|
Hajime Hoshi
|
37c5f53890
|
internal/graphicsdriver/opengl: refactoring
|
2022-10-15 22:14:21 +09:00 |
|
Hajime Hoshi
|
14a3a0f6bc
|
internal/graphicsdriver/opengl/gl: better error message
|
2022-09-10 14:21:59 +09:00 |
|
Hajime Hoshi
|
fe11facbb8
|
internal/graphicsdriver/opengl/gl: better error message
|
2022-09-10 14:14:42 +09:00 |
|
Hajime Hoshi
|
d8eaf0a394
|
internal/graphicsdriver/opengl/gl: reland: integrate files for ebitengine/purego
Closes #2313
|
2022-09-10 13:37:20 +09:00 |
|
Hajime Hoshi
|
45a9cdda30
|
Revert "internal/graphicsdriver/opengl/gl: integrate files for ebitengine/purego"
This reverts commit be8edb984f .
Reason: Test failures. See #2313
Updates #2313
|
2022-09-10 03:45:14 +09:00 |
|
Hajime Hoshi
|
be8edb984f
|
internal/graphicsdriver/opengl/gl: integrate files for ebitengine/purego
|
2022-09-10 03:31:16 +09:00 |
|