mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Implemented workaround for dump images with width >= 5462 pix on Intel OpenGl driver. Changes according to OpenGl_Context::myVendor field in lowercase.
21 lines
479 B
Plaintext
21 lines
479 B
Plaintext
puts "========"
|
|
puts "0029020: Visualization, V3d_View - workaround image dump issue on Intel OpenGL driver"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
box b 1 1 1
|
|
vclear
|
|
vinit View1
|
|
vdisplay -dispMode 1 b
|
|
vtop
|
|
vfit
|
|
|
|
#Get max size of dumped image
|
|
set anExpression {Max texture size: (\d+)}
|
|
regexp $anExpression [vglinfo] _ match
|
|
|
|
vdump $imagedir/${casename}_max_width.png -width $match -height 100
|
|
|
|
vdump $imagedir/${casename}_max_height.png -width 100 -height $match
|