mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Graphic3d_Buffer can be now optionally initialized as non-interleaved array of vertex attributes and provides an interface to invalidate buffer sub-range tracked by OpenGl_PrimitiveArray.
25 lines
640 B
Plaintext
25 lines
640 B
Plaintext
puts "=========="
|
|
puts "OCC23883"
|
|
#################################################################################
|
|
puts "Bound color in the primitive array do not work when displayed using VBO"
|
|
#################################################################################
|
|
|
|
set x_coord 321
|
|
set y_coord 200
|
|
|
|
vclear
|
|
vinit View1
|
|
vvbo 0
|
|
vdrawparray pl01 polylines v 0 0 0 v 0 10 0 v 0 10 10 v 0 0 0 b 4 c 1 0 0
|
|
vfit
|
|
checkcolor $x_coord $y_coord 1 0 0
|
|
|
|
vclear
|
|
vvbo 1
|
|
vdrawparray pl01 polylines v 0 0 0 v 0 10 0 v 0 10 10 v 0 0 0 b 4 c 1 0 0
|
|
checkcolor $x_coord $y_coord 1 0 0
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|
|
|
|
|