Skip to content

Commit

Permalink
Merge pull request #242 from inviwo/feature/coregl-changes
Browse files Browse the repository at this point in the history
MolVisGL,TensorVisBase: GLSL color conversions core changes
  • Loading branch information
petersteneteg authored Nov 29, 2024
2 parents b472e16 + b9a5575 commit bf7f066
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,11 @@ jobs:
shell: pwsh
run: |
$ver = (Get-ChildItem -Name C:/"Program Files"/Inviwo/*)
Invoke-expression "C:/'Program Files'/Inviwo/$ver/bin/inviwo-cli.exe --logconsole --quit"
if($LASTEXITCODE -ne 0) {
Invoke-expression "C:\'Program Files (x86)'\'Windows Kits'\10\Debuggers\x64\gflags.exe /i C:/'Program Files'/Inviwo/$ver/bin/inviwo-cli.exe +sls"
Invoke-Expression "C:\'Program Files (x86)'\'Windows Kits'\10\Debuggers\x64\cdb.exe -g -c q C:/'Program Files'/Inviwo/$ver/bin/inviwo-cli.exe"
cd C:/'Program Files'/Inviwo/$ver/bin/
./inviwo-cli.exe --logconsole --quit
if ($LASTEXITCODE -ne 0) {
C:\'Program Files (x86)'\'Windows Kits'\10\Debuggers\x64\gflags.exe /i inviwo-cli.exe +sls
C:\'Program Files (x86)'\'Windows Kits'\10\Debuggers\x64\cdb.exe -g -c q inviwo-cli.exe
}
# Macos
Expand Down
2 changes: 1 addition & 1 deletion molvis/molvisgl/glsl/licorice.vert
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/

#include "utils/structs.glsl"
#include "colortools.glsl"
#include "utils/colorconversion.glsl"
#include "utils/selectioncolor.glsl"
#include "utils/vertexflags.glsl"

Expand Down
2 changes: 1 addition & 1 deletion tensorvis/tensorvisbase/glsl/tensorglyphpicking.frag
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*********************************************************************************/

#include "utils/shading.glsl"
#include "colortools.glsl"
#include "utils/colorconversion.glsl"

// Same as geometryrendering.frag with the exception of picking
uniform vec3 pickingColor;
Expand Down

0 comments on commit bf7f066

Please sign in to comment.