This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| elect@elect-desktop:~/Downloads/ogldev-source/tutorial02$ make | |
| "make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf | |
| make[1]: Entering directory '/home/elect/Downloads/ogldev-source/tutorial02' | |
| "make" -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux/tutorial02 | |
| make[2]: Entering directory '/home/elect/Downloads/ogldev-source/tutorial02' | |
| mkdir -p build/Debug/GNU-Linux | |
| rm -f "build/Debug/GNU-Linux/tutorial02.o.d" | |
| g++ `pkg-config --cflags ImageMagick++ gl assimp glew freetype2 fontconfig` -c -g -I../Include -MMD -MP -MF "build/Debug/GNU-Linux/tutorial02.o.d" -o build/Debug/GNU-Linux/tutorial02.o tutorial02.cpp | |
| Package glew was not found in the pkg-config search path. | |
| Perhaps you should add the directory containing `glew.pc' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #version 330 | |
| #extension GL_ARB_draw_buffers : require | |
| #include semantic.glsl | |
| #include shade-blinnGaussSp.glsl | |
| uniform sampler2D opaqueDepthTex; | |
| layout (location = SUM_COLOR) out vec4 sumColor; | |
| layout (location = SUM_WEIGHT) out float sumWeight; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| elect@elect-desktop:~/IdeaProjects/gli$ gradle build | |
| :compileKotlin^Celect@elect-desktop:~/IdeaProjects/gli$ ./gradlew build --info --debug | |
| 13:48:49.874 [INFO] [org.gradle.internal.nativeintegration.services.NativeServices] Initialized native services in: /home/elect/.gradle/native | |
| 13:48:50.153 [DEBUG] [org.gradle.launcher.daemon.client.DaemonClient] Executing build 642741e5-88d3-4743-8727-2d8ad6560681.1 in daemon client {pid=19556} | |
| 13:48:50.160 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding IP addresses for network interface enp4s0 | |
| 13:48:50.160 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Is this a loopback interface? false | |
| 13:48:50.160 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Is this a multicast interface? true | |
| 13:48:50.162 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding remote address /2a02:8108:4740:62a9:5021:35a0:ffb9:8bc1%enp4s0 | |
| 13:48:50.162 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Addin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GDM configuration storage | |
| # | |
| # See /usr/share/gdm/gdm.schemas for a list of available options. | |
| [daemon] | |
| # Uncoment the line below to force the login screen to use Xorg | |
| #WaylandEnable=false | |
| # Enabling automatic login | |
| # AutomaticLoginEnable = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java.lang.AssertionError: expected: | 1.0, 5.2359884E-8, 0.0, 0.0 | | |
| | -5.2359884E-8, 1.0, 0.0, 0.0 | | |
| | 0.0, 0.0, 1.0, 0.0 | | |
| | 0.0, 0.0, 0.0, 1.0 | but was: | 1.0, -5.2359884E-8, 0.0, 0.0 | | |
| | 5.2359884E-8, 1.0, 0.0, 0.0 | | |
| | 0.0, 0.0, 1.0, 0.0 | | |
| | 0.0, 0.0, 0.0, 1.0 | <Click to see difference> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "C:\Program Files\Java\jdk1.8.0_144\bin\java" -ea -Didea.test.cyclic.buffer.size=1048576 "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 173.3415.22\lib\idea_rt.jar=56185:C:\Program Files\JetBrains\IntelliJ IDEA 173.3415.22\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\JetBrains\IntelliJ IDEA 173.3415.22\lib\idea_rt.jar;C:\Program Files\JetBrains\IntelliJ IDEA 173.3415.22\plugins\junit\lib\junit-rt.jar;C:\Program Files\JetBrains\IntelliJ IDEA 173.3415.22\plugins\junit\lib\junit5-rt.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_144\jre\lib\ex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class JavaProp<T>(val g: () -> T, val s: (T) -> T) : KMutableProperty0<T> { | |
| override val isConst: Boolean = false | |
| override val isOpen: Boolean = false | |
| override val annotations: List<Annotation> = listOf() | |
| override val isLateinit: Boolean = false | |
| override val isAbstract: Boolean = false | |
| override val isFinal: Boolean = false | |
| override val name: String = "" | |
| override val parameters: List<KParameter> = listOf() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| object Ref { | |
| var iPtr = 0 | |
| var fPtr = 0 | |
| var bPtr = 0 | |
| val ints = IntArray(100) | |
| val floats = FloatArray(100) | |
| val bools = BooleanArray(100) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AndroidOpenGLESLessons | |
| βββ app | |
| βΒ Β βββ build.gradle | |
| βΒ Β βββ src | |
| βΒ Β βββ main | |
| βΒ Β βββ AndroidManifest.xml | |
| βΒ Β βββ java | |
| βΒ Β βΒ Β βββ com | |
| βΒ Β βΒ Β βββ learnopengles | |
| βΒ Β βΒ Β βββ android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Error:Kotlin: [Internal Error] org.jetbrains.kotlin.codegen.CompilationException: Back-end (JVM) Internal error: Couldn't inline method call 'treeNode' into | |
| local final fun <anonymous>(): kotlin.Unit defined in imgui.imgui.demo.layout_.invoke | |
| { | |
| treeNode("Child regions") { | |
| var gotoLine = button("Goto") | |
| text("Without border") | |
| sameLine() | |
| withItemWidth(100) { | |
| gotoLine = gotoLine or inputInt("##Line", ::line, 0, 0, Itf.EnterReturnsTrue.i) | |
| } |