View Issue Details

IDProjectCategoryView StatusLast Update
0030969Open CASCADEOCCT:Codingpublic2020-12-02 17:12
Reporterkgv Assigned Toapn  
PrioritynormalSeverityintegration request 
Status closedResolutionfixed 
Target Version7.5.0Fixed in Version7.5.0 
Summary0030969: Coding Rules - refactor Quantity_Color.cxx color table definition
DescriptionQuantity_Color.cxx defines a large table of standard colors.
It is desired refactoring this table to be better aligned.

static Standard_Integer VColTable (Draw_Interpretor& theDI, Standard_Integer theArgNb, const char** theArgVec)
{
  FILE* aFile = OSD_OpenFile ("col.hxx", "wb");
  if (aFile == NULL) { std::cerr << "FAILED\n";  return 1; }
  for (int aColIter = 0; aColIter <= Quantity_NOC_WHITE; ++aColIter)
  {
    Quantity_Color aColor ((Quantity_NameOfColor )aColIter);
    TCollection_AsciiString aHex = Quantity_Color::ColorToHex(aColor).SubString (2, 7);
    Fprintf (aFile, "RawColor(%-20s, 0x%s, %f, %f, %f),\n",
             Quantity_Color::StringName ((Quantity_NameOfColor )aColIter), aHex.ToCString(),
             aColor.Red(), aColor.Green(), aColor.Blue());
  }
  fclose(aFile);
  return 0;
}
Steps To ReproduceN/A
TagsNo tags attached.
Test case numberNot needed

Relationships

related to 0029528 closedapn Open CASCADE Visualization, TKOpenGl - allow defining sRGB textures 
related to 0031035 closedbugmaster Open CASCADE Coding - uninitialized class fields reported by Visual Studio Code Analysis 
related to 0031324 closedbugmaster Community [Regression to OCCT 7.4.0] Data Exchange - Cannot read BinOcaf document with colour 

Activities

git

2019-09-16 23:10

administrator   ~0087170

Branch CR30969 has been created by kgv.

SHA-1: 5e78b60bdfeb5b945e26d5a1b3d389ff8b80298a


Detailed log of new commits:

Author: kgv
Date: Mon Sep 16 23:06:38 2019 +0300

    0030969: Coding Rules - refactor Quantity_Color.cxx color table definition
    
    The table of named colors has been compressed and moved out
    from Quantity_Color.cxx into Quantity_ColorTable.pxx.
    
    Quantity_NameOfColor - grayscale enumeration values
    have been re-ordered to fix discontinuity.
    
    Quantity_Color class definition has been cleaned to follow OCCT coding style.
    Quantity_Color now stores NCollection_Vec3<float> as class field instead of separate components.
    New methods Quantity_Color::Convert_LinearRGB_To_sRGB() and Quantity_Color::Convert_sRGB_To_LinearRGB()
    converting RGB components from linear to non-linear sRGB colorspace and vice versa.

git

2019-09-16 23:38

administrator   ~0087172

Branch CR30969 has been updated forcibly by kgv.

SHA-1: 5dd6fc82b69a0dd7dbfafb41d37de578fca51b78

abv

2019-09-17 06:47

manager   ~0087177

Let's postpone it till 7.5.0. Minor remark: there is no sense in prefixing calls to the class' own methods by its name within the class definition, like calls to Quantity_Color::valuesOf() in Quantity_Color.hxx.

git

2019-09-17 08:16

administrator   ~0087180

Branch CR30969 has been updated forcibly by kgv.

SHA-1: abc49f0cf69a952fe8e497527f3f3b5aee27240c

git

2019-09-17 11:00

administrator   ~0087190

Branch CR30969 has been updated forcibly by kgv.

SHA-1: 4e7c85af208f3a674522ef67abef4a09e88fc8be

git

2019-09-17 13:33

administrator   ~0087199

Branch CR30969 has been updated forcibly by kgv.

SHA-1: bbb2ea5994d354eae7a4c278b13d3d24e9dddac8

git

2019-09-17 14:47

administrator   ~0087202

Branch CR30969 has been updated forcibly by kgv.

SHA-1: 409493504f6e5e3902395bf911cc1cbe9069f707

git

2019-09-17 16:59

administrator   ~0087206

Branch CR30969 has been updated forcibly by kgv.

SHA-1: 5ca6bad5b67c06b546ced95ef804ed14d623483c

git

2019-09-17 18:06

administrator   ~0087215

Branch CR30969 has been updated forcibly by kgv.

SHA-1: ecf8bbdf0765943afef2f875d8574cdec17233b6

git

2019-09-17 19:05

administrator   ~0087219

Branch CR30969 has been updated forcibly by kgv.

SHA-1: d568d0063886ed6a29c2797d606215cf3eb231e1

git

2019-09-17 19:27

administrator   ~0087221

Branch CR30969 has been updated forcibly by kgv.

SHA-1: 2d094b0fee4147857fa6ae646e58db644e293a54

git

2019-09-18 01:39

administrator   ~0087227

Branch CR30969 has been updated forcibly by kgv.

SHA-1: 96fbac030a3ab57bd45301a79d5b8e5d8f2374ab

git

2019-09-18 01:46

administrator   ~0087229

Branch CR30969 has been updated forcibly by kgv.

SHA-1: 7744d1c9efd94d0b5d20a3c3f5efacdf6a542397

git

2019-09-18 02:49

administrator   ~0087231

Branch CR30969_1 has been created by kgv.

SHA-1: 2601dc86ee1b8300faf34ac9e90122d4600a489c


Detailed log of new commits:

Author: kgv
Date: Mon Sep 16 23:06:38 2019 +0300

    0030969: Coding Rules - refactor Quantity_Color.cxx color table definition
    
    The table of named colors has been compressed and moved out
    from Quantity_Color.cxx into Quantity_ColorTable.pxx.
    
    Quantity_NameOfColor - grayscale enumeration values have been re-ordered to fix discontinuity.
    Duplicating colors has been merged within enumeration:
      CHARTREUSE=CHARTREUSE1, GOLD=GOLD1, GREEN=GREEN1, ORANGE=ORANGE1,
      ORANGERED=ORANGERED1, RED=RED1, TOMATO=TOMATO1, YELLOW=YELLOW1.
    Added aliases to several other common colors:
      BLUE=BLUE1, CYAN=CYAN1, LIGHTCYAN=LIGHTCYAN1, MAGENTA=MAGENTA1.
    
    Quantity_Color::ColorToHex() now rounds-up float values to closest integer.
    Quantity_ColorRGBA::ColorToHex() - added method formatting color into hex with alpha component.
    
    Quantity_Color class definition has been cleaned to follow OCCT coding style.
    Quantity_Color now stores NCollection_Vec3<float> as class field instead of separate components.
    Removed unused class Quantity_ColorDefinitionError.
    
    New methods Quantity_Color::Convert_LinearRGB_To_sRGB() and Quantity_Color::Convert_sRGB_To_LinearRGB()
    converting RGB components from linear to non-linear sRGB colorspace and vice versa.
    Image_PixMap::PixelColor() and Image_PixMap::SetPixelColor() methods have been extended
    with an optional argument for performing linearization/delinearization of 8-bit sRGB pixel formats.
    
    Draw Harness command AISColor has been corrected to take color name instead of enumeration index.
    
    vdrawtext command now uses ViewerTest::ParseColor() for parsing color argument, so that it accepts hex.
    vreadpixel command now has been extended with -hex argument for printing color in hex format.

git

2019-09-18 10:28

administrator   ~0087245

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: 42b44884c0ab63df0318e60a937562bb4cdb9598

git

2019-09-18 13:07

administrator   ~0087247

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: 0fc5dcdf983882fed0fe91b1fcb89b9feef05304

git

2019-09-18 15:18

administrator   ~0087257

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: 89edcc39bb6a1862ec7ed68d4c96c0a3eecb27c7

git

2019-09-18 17:27

administrator   ~0087262

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: c3cd55c2b103a534a693fc5ce5290ddb6b55957c

git

2019-09-19 10:18

administrator   ~0087291

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: 577a52d6b2a6f1bbc6d715f02497ebfd07763e8e

git

2019-09-19 11:54

administrator   ~0087294

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: f7a060ddd93fc4f9d6ae1bbcc3945b004d588cd3

git

2019-09-19 21:03

administrator   ~0087329

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: b0bef43c8d36216984dc958bc11a5702b1de64fd

git

2019-09-20 13:07

administrator   ~0087358

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: 0c7d27551fa1190bb57889334c973dc9e859da70

git

2019-09-20 13:23

administrator   ~0087361

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: f2f06fbc45cbf2d9afb6ad802d2567c50ed889a2

git

2019-09-21 22:20

administrator   ~0087400

Branch CR30969_1 has been updated forcibly by kgv.

SHA-1: 56f2e2c03afb96709cf68e5357f12bcaf345f658

git

2019-09-23 12:32

administrator   ~0087447

Branch CR30969_2 has been created by kgv.

SHA-1: 15385fd0c0ef75c3113dabac07a9b683fb89dcc3


No new revisions were added by this update.

kgv

2019-09-23 14:52

developer   ~0087450

Patch is ready for review.

http://jenkins-test-12.nnov.opencascade.com:8080/view/CR29528_4-CR29528_4-KGV/

osa

2019-09-24 11:47

developer   ~0087464

The patches were reviewed without remarks

git

2019-10-01 15:36

administrator   ~0087664

Branch CR30969_2 has been updated forcibly by kgv.

SHA-1: 11047e453c261cbd7e01920f350920d65bdfd6bb

git

2019-10-23 11:51

administrator   ~0088463

Branch CR30969 has been deleted by kgv.

SHA-1: 7744d1c9efd94d0b5d20a3c3f5efacdf6a542397

git

2019-10-23 11:51

administrator   ~0088464

Branch CR30969_1 has been deleted by kgv.

SHA-1: 56f2e2c03afb96709cf68e5357f12bcaf345f658

git

2019-10-23 11:51

administrator   ~0088465

Branch CR30969_2 has been deleted by kgv.

SHA-1: 11047e453c261cbd7e01920f350920d65bdfd6bb

Related Changesets

occt: master aaf8d6a9

2019-09-16 20:06:38

kgv


Committer: apn Details Diff
0030969: Coding Rules - refactor Quantity_Color.cxx color table definition

The table of named colors has been compressed and moved out
from Quantity_Color.cxx into Quantity_ColorTable.pxx.

Quantity_NameOfColor - grayscale enumeration values have been re-ordered to fix discontinuity.
Duplicating colors has been merged within enumeration:
CHARTREUSE=CHARTREUSE1, GOLD=GOLD1, GREEN=GREEN1, ORANGE=ORANGE1,
ORANGERED=ORANGERED1, RED=RED1, TOMATO=TOMATO1, YELLOW=YELLOW1.
Added aliases to several other common colors:
BLUE=BLUE1, CYAN=CYAN1, LIGHTCYAN=LIGHTCYAN1, MAGENTA=MAGENTA1.

Quantity_Color class definition has been cleaned to follow OCCT coding style.
Quantity_Color now stores NCollection_Vec3<float> as class field instead of separate components.
Removed unused class Quantity_ColorDefinitionError.

New methods Quantity_Color::Convert_LinearRGB_To_sRGB() and Quantity_Color::Convert_sRGB_To_LinearRGB()
converting RGB components from linear to non-linear sRGB colorspace and vice versa.
Image_PixMap::PixelColor() and Image_PixMap::SetPixelColor() methods have been extended
with an optional argument for performing linearization/delinearization of 8-bit sRGB pixel formats.

Draw Harness command AISColor has been corrected to take color name instead of enumeration index.
Affected Issues
0030969
mod - samples/tcl/ANC101.tcl Diff File
mod - samples/tcl/cpu.tcl Diff File
mod - samples/tcl/dimensions.tcl Diff File
mod - samples/tcl/logo2019.tcl Diff File
mod - samples/tcl/markers.tcl Diff File
mod - samples/tcl/materials.tcl Diff File
mod - samples/tcl/MBBGehauseRohteil.tcl Diff File
mod - samples/tcl/pencil.tcl Diff File
mod - samples/tcl/Penrose.tcl Diff File
mod - samples/tcl/xde.tcl Diff File
mod - src/DPrsStd/DPrsStd_AISPresentationCommands.cxx Diff File
mod - src/Image/Image_PixMap.cxx Diff File
mod - src/Image/Image_PixMap.hxx Diff File
mod - src/QABugs/QABugs_11.cxx Diff File
mod - src/Quantity/FILES Diff File
mod - src/Quantity/Quantity_Color.cxx Diff File
mod - src/Quantity/Quantity_Color.hxx Diff File
rm - src/Quantity/Quantity_ColorDefinitionError.hxx Diff File
mod - src/Quantity/Quantity_ColorRGBA.hxx Diff File
add - src/Quantity/Quantity_ColorTable.pxx Diff File
mod - src/Quantity/Quantity_NameOfColor.hxx Diff File
mod - src/Quantity/Quantity_TypeOfColor.hxx Diff File
mod - tests/3rdparty/fonts/A2 Diff File
mod - tests/3rdparty/fonts/A3 Diff File
mod - tests/3rdparty/fonts/A4 Diff File
mod - tests/3rdparty/fonts/A5 Diff File
mod - tests/3rdparty/fonts/A6 Diff File
mod - tests/3rdparty/fonts/A7 Diff File
mod - tests/3rdparty/fonts/A8 Diff File
mod - tests/3rdparty/fonts/B1 Diff File
mod - tests/3rdparty/fonts/B2 Diff File
mod - tests/3rdparty/fonts/B4 Diff File
mod - tests/3rdparty/fonts/B5 Diff File
mod - tests/3rdparty/fonts/B7 Diff File
mod - tests/bugs/caf/bug1029 Diff File
rm - tests/bugs/caf/bug1030 Diff File
mod - tests/bugs/caf/bug26290_newattribute_1 Diff File
mod - tests/bugs/caf/bug26290_newattribute_2 Diff File
mod - tests/bugs/iges/bug25518 Diff File
mod - tests/bugs/modalg_5/bug24244 Diff File
mod - tests/bugs/step/bug30856 Diff File
mod - tests/bugs/vis/bug21747_1 Diff File
mod - tests/bugs/vis/bug21747_10 Diff File
mod - tests/bugs/vis/bug21747_11 Diff File
mod - tests/bugs/vis/bug21747_12 Diff File
mod - tests/bugs/vis/bug21747_13 Diff File
mod - tests/bugs/vis/bug21747_14 Diff File
mod - tests/bugs/vis/bug21747_15 Diff File
mod - tests/bugs/vis/bug21747_16 Diff File
mod - tests/bugs/vis/bug21747_17 Diff File
mod - tests/bugs/vis/bug21747_2 Diff File
mod - tests/bugs/vis/bug21747_3 Diff File
mod - tests/bugs/vis/bug21747_4 Diff File
mod - tests/bugs/vis/bug21747_5 Diff File
mod - tests/bugs/vis/bug21747_6 Diff File
mod - tests/bugs/vis/bug21747_7 Diff File
mod - tests/bugs/vis/bug21747_8 Diff File
mod - tests/bugs/vis/bug21747_9 Diff File
mod - tests/bugs/vis/bug22149 Diff File
mod - tests/bugs/vis/bug22796_1 Diff File
mod - tests/bugs/vis/bug22796_2 Diff File
mod - tests/bugs/vis/bug22879 Diff File
mod - tests/bugs/vis/bug22906 Diff File
mod - tests/bugs/vis/bug23363 Diff File
mod - tests/bugs/vis/bug23652 Diff File
mod - tests/bugs/vis/bug24391 Diff File
mod - tests/bugs/vis/bug24555 Diff File
mod - tests/bugs/vis/bug24564 Diff File
mod - tests/bugs/vis/bug24714 Diff File
mod - tests/bugs/vis/bug24717 Diff File
mod - tests/bugs/vis/bug24837_2 Diff File
mod - tests/bugs/vis/bug24867 Diff File
mod - tests/bugs/vis/bug24901 Diff File
mod - tests/bugs/vis/bug25121 Diff File
mod - tests/bugs/vis/bug25136 Diff File
mod - tests/bugs/vis/bug25369 Diff File
mod - tests/bugs/vis/bug25475 Diff File
mod - tests/bugs/vis/bug25732_1 Diff File
mod - tests/bugs/vis/bug25732_2 Diff File
mod - tests/bugs/vis/bug25775 Diff File
mod - tests/bugs/vis/bug26404 Diff File
mod - tests/bugs/vis/bug26599 Diff File
mod - tests/bugs/vis/bug26680 Diff File
mod - tests/bugs/vis/bug26719_1 Diff File
mod - tests/bugs/vis/bug26870 Diff File
mod - tests/bugs/vis/bug26959 Diff File
mod - tests/bugs/vis/bug27530 Diff File
mod - tests/bugs/vis/bug27573 Diff File
mod - tests/bugs/vis/bug27624 Diff File
mod - tests/bugs/vis/bug27739 Diff File
mod - tests/bugs/vis/bug27751_capping Diff File
mod - tests/bugs/vis/bug27796 Diff File
mod - tests/bugs/vis/bug27836 Diff File
mod - tests/bugs/vis/bug27958 Diff File
mod - tests/bugs/vis/bug28004 Diff File
mod - tests/bugs/vis/bug28036_1 Diff File
mod - tests/bugs/vis/bug28036_2 Diff File
mod - tests/bugs/vis/bug28061 Diff File
mod - tests/bugs/vis/bug28099_text_core Diff File
mod - tests/bugs/vis/bug28127 Diff File
mod - tests/bugs/vis/bug28361 Diff File
mod - tests/bugs/vis/bug30076 Diff File
mod - tests/bugs/vis/bug30630_1 Diff File
mod - tests/bugs/vis/bug30630_2 Diff File
mod - tests/bugs/vis/bug30630_3 Diff File
mod - tests/bugs/vis/bug5990 Diff File
mod - tests/bugs/vis/bug6897_1 Diff File
mod - tests/bugs/vis/bug74 Diff File
mod - tests/bugs/vis/bug85_1 Diff File
mod - tests/bugs/vis/bug85_2 Diff File
mod - tests/bugs/xde/bug26216 Diff File
mod - tests/bugs/xde/bug28641 Diff File
mod - tests/bugs/xde/bug29436_1 Diff File
mod - tests/caf/bugs/D2 Diff File
mod - tests/caf/parse.rules Diff File
mod - tests/caf/presentation/B2 Diff File
mod - tests/caf/presentation/B3 Diff File
mod - tests/caf/presentation/B4 Diff File
mod - tests/caf/presentation/C1 Diff File
mod - tests/caf/presentation/F2 Diff File
mod - tests/caf/presentation/F3 Diff File
mod - tests/caf/presentation/F4 Diff File
mod - tests/caf/presentation/G1 Diff File
mod - tests/caf/presentation/H1 Diff File
mod - tests/caf/presentation/H2 Diff File
mod - tests/caf/presentation/I1 Diff File
mod - tests/caf/presentation/I2 Diff File
mod - tests/caf/presentation/J1 Diff File
mod - tests/caf/presentation/J2 Diff File
mod - tests/caf/presentation/K1 Diff File
mod - tests/caf/presentation/K2 Diff File
mod - tests/de/iges_1/C7 Diff File
mod - tests/de/iges_1/E1 Diff File
mod - tests/de/iges_1/G2 Diff File
mod - tests/de/iges_1/H1 Diff File
mod - tests/de/iges_1/H5 Diff File
mod - tests/de/iges_1/H6 Diff File
mod - tests/de/iges_1/H7 Diff File
mod - tests/de/iges_1/H8 Diff File
mod - tests/de/iges_1/H9 Diff File
mod - tests/de/iges_1/I1 Diff File
mod - tests/de/iges_1/I2 Diff File
mod - tests/de/iges_1/I4 Diff File
mod - tests/de/iges_1/I6 Diff File
mod - tests/de/iges_1/I8 Diff File
mod - tests/de/iges_1/J5 Diff File
mod - tests/de/iges_1/J6 Diff File
mod - tests/de/iges_1/J7 Diff File
mod - tests/de/iges_1/J8 Diff File
mod - tests/de/iges_1/K1 Diff File
mod - tests/de/iges_1/K3 Diff File
mod - tests/de/iges_1/K4 Diff File
mod - tests/de/iges_1/K8 Diff File
mod - tests/de/iges_1/K9 Diff File
mod - tests/de/iges_1/L2 Diff File
mod - tests/de/iges_1/L8 Diff File
mod - tests/de/iges_1/L9 Diff File
mod - tests/de/iges_1/M1 Diff File
mod - tests/de/iges_1/M6 Diff File
mod - tests/de/iges_1/N1 Diff File
mod - tests/de/iges_1/N2 Diff File
mod - tests/de/iges_1/O1 Diff File
mod - tests/de/iges_1/O4 Diff File
mod - tests/de/iges_1/O6 Diff File
mod - tests/de/iges_1/O7 Diff File
mod - tests/de/iges_1/O8 Diff File
mod - tests/de/iges_1/O9 Diff File
mod - tests/de/iges_1/P1 Diff File
mod - tests/de/iges_1/P2 Diff File
mod - tests/de/iges_1/P5 Diff File
mod - tests/de/iges_1/P6 Diff File
mod - tests/de/iges_1/Q7 Diff File
mod - tests/de/iges_1/R3 Diff File
mod - tests/de/iges_1/R4 Diff File
mod - tests/de/iges_1/R5 Diff File
mod - tests/de/iges_1/R6 Diff File
mod - tests/de/iges_1/R7 Diff File
mod - tests/de/iges_1/R8 Diff File
mod - tests/de/iges_2/A3 Diff File
mod - tests/de/iges_2/A5 Diff File
mod - tests/de/iges_2/A6 Diff File
mod - tests/de/iges_2/A7 Diff File
mod - tests/de/iges_2/A8 Diff File
mod - tests/de/iges_2/A9 Diff File
mod - tests/de/iges_2/B1 Diff File
mod - tests/de/iges_2/B2 Diff File
mod - tests/de/iges_2/B8 Diff File
mod - tests/de/iges_2/B9 Diff File
mod - tests/de/iges_2/C1 Diff File
mod - tests/de/iges_2/C3 Diff File
mod - tests/de/iges_2/C4 Diff File
mod - tests/de/iges_2/C5 Diff File
mod - tests/de/iges_2/C6 Diff File
mod - tests/de/iges_2/C7 Diff File
mod - tests/de/iges_2/D1 Diff File
mod - tests/de/iges_2/D3 Diff File
mod - tests/de/iges_2/D4 Diff File
mod - tests/de/iges_2/D7 Diff File
mod - tests/de/iges_2/D8 Diff File
mod - tests/de/iges_2/D9 Diff File
mod - tests/de/iges_2/E3 Diff File
mod - tests/de/iges_2/E4 Diff File
mod - tests/de/iges_2/E6 Diff File
mod - tests/de/iges_2/E7 Diff File
mod - tests/de/iges_2/E8 Diff File
mod - tests/de/iges_2/F1 Diff File
mod - tests/de/iges_2/F2 Diff File
mod - tests/de/iges_2/F3 Diff File
mod - tests/de/iges_2/F4 Diff File
mod - tests/de/iges_2/F5 Diff File
mod - tests/de/iges_2/F6 Diff File
mod - tests/de/iges_2/F8 Diff File
mod - tests/de/iges_2/G2 Diff File
mod - tests/de/iges_2/G3 Diff File
mod - tests/de/iges_2/G4 Diff File
mod - tests/de/iges_2/G5 Diff File
mod - tests/de/iges_2/G7 Diff File
mod - tests/de/iges_2/G8 Diff File
mod - tests/de/iges_2/G9 Diff File
mod - tests/de/iges_2/H2 Diff File
mod - tests/de/iges_2/H3 Diff File
mod - tests/de/iges_2/H4 Diff File
mod - tests/de/iges_2/H5 Diff File
mod - tests/de/iges_2/H7 Diff File
mod - tests/de/iges_2/H8 Diff File
mod - tests/de/iges_2/H9 Diff File
mod - tests/de/iges_2/I1 Diff File
mod - tests/de/iges_2/I2 Diff File
mod - tests/de/iges_2/I4 Diff File
mod - tests/de/iges_2/I5 Diff File
mod - tests/de/iges_2/I6 Diff File
mod - tests/de/iges_2/I7 Diff File
mod - tests/de/iges_2/I8 Diff File
mod - tests/de/iges_2/I9 Diff File
mod - tests/de/iges_2/J1 Diff File
mod - tests/de/iges_3/A1 Diff File
mod - tests/de/iges_3/A2 Diff File
mod - tests/de/iges_3/A4 Diff File
mod - tests/de/iges_3/A7 Diff File
mod - tests/de/iges_3/A8 Diff File
mod - tests/de/step_1/A5 Diff File
mod - tests/de/step_1/A6 Diff File
mod - tests/de/step_1/A7 Diff File
mod - tests/de/step_1/A8 Diff File
mod - tests/de/step_1/B4 Diff File
mod - tests/de/step_1/B6 Diff File
mod - tests/de/step_1/B7 Diff File
mod - tests/de/step_1/B8 Diff File
mod - tests/de/step_1/C1 Diff File
mod - tests/de/step_1/F5 Diff File
mod - tests/de/step_1/F7 Diff File
mod - tests/de/step_1/G5 Diff File
mod - tests/de/step_1/G6 Diff File
mod - tests/de/step_1/G7 Diff File
mod - tests/de/step_1/M3 Diff File
mod - tests/de/step_1/M4 Diff File
mod - tests/de/step_1/M5 Diff File
mod - tests/de/step_1/M6 Diff File
mod - tests/de/step_1/N4 Diff File
mod - tests/de/step_1/N5 Diff File
mod - tests/de/step_1/N6 Diff File
mod - tests/de/step_1/N7 Diff File
mod - tests/de/step_1/N8 Diff File
mod - tests/de/step_1/N9 Diff File
mod - tests/de/step_1/Q4 Diff File
mod - tests/de/step_1/Q5 Diff File
mod - tests/de/step_1/R8 Diff File
mod - tests/de/step_1/S2 Diff File
mod - tests/de/step_1/S9 Diff File
mod - tests/de/step_1/T7 Diff File
mod - tests/de/step_1/T8 Diff File
mod - tests/de/step_1/T9 Diff File
mod - tests/de/step_1/U1 Diff File
mod - tests/de/step_1/U4 Diff File
mod - tests/de/step_1/U6 Diff File
mod - tests/de/step_1/U8 Diff File
mod - tests/de/step_1/U9 Diff File
mod - tests/de/step_1/V1 Diff File
mod - tests/de/step_1/V2 Diff File
mod - tests/de/step_1/V3 Diff File
mod - tests/de/step_1/V4 Diff File
mod - tests/de/step_1/V5 Diff File
mod - tests/de/step_1/V8 Diff File
mod - tests/de/step_1/W4 Diff File
mod - tests/de/step_1/W6 Diff File
mod - tests/de/step_1/X3 Diff File
mod - tests/de/step_1/X8 Diff File
mod - tests/de/step_1/X9 Diff File
mod - tests/de/step_1/Y2 Diff File
mod - tests/de/step_1/Z2 Diff File
mod - tests/de/step_1/Z3 Diff File
mod - tests/de/step_1/ZB7 Diff File
mod - tests/de/step_1/ZD8 Diff File
mod - tests/de/step_1/ZD9 Diff File
mod - tests/de/step_1/ZE3 Diff File
mod - tests/de/step_1/ZE5 Diff File
mod - tests/de/step_1/ZE6 Diff File
mod - tests/de/step_1/ZE8 Diff File
mod - tests/de/step_1/ZE9 Diff File
mod - tests/de/step_1/ZF3 Diff File
mod - tests/de/step_1/ZF4 Diff File
mod - tests/de/step_1/ZF5 Diff File
mod - tests/de/step_1/ZF8 Diff File
mod - tests/de/step_1/ZF9 Diff File
mod - tests/de/step_1/ZG3 Diff File
mod - tests/de/step_1/ZG7 Diff File
mod - tests/de/step_1/ZG8 Diff File
mod - tests/de/step_1/ZH2 Diff File
mod - tests/de/step_1/ZH5 Diff File
mod - tests/de/step_1/ZH6 Diff File
mod - tests/de/step_1/ZH8 Diff File
mod - tests/de/step_1/ZH9 Diff File
mod - tests/de/step_1/ZI1 Diff File
mod - tests/de/step_1/ZI4 Diff File
mod - tests/de/step_1/ZI5 Diff File
mod - tests/de/step_1/ZM6 Diff File
mod - tests/de/step_1/ZM7 Diff File
mod - tests/de/step_1/ZM8 Diff File
mod - tests/de/step_1/ZM9 Diff File
mod - tests/de/step_1/ZN2 Diff File
mod - tests/de/step_1/ZO1 Diff File
mod - tests/de/step_1/ZO6 Diff File
mod - tests/de/step_1/ZP5 Diff File
mod - tests/de/step_1/ZQ2 Diff File
mod - tests/de/step_1/ZQ4 Diff File
mod - tests/de/step_1/ZQ5 Diff File
mod - tests/de/step_1/ZQ6 Diff File
mod - tests/de/step_1/ZQ9 Diff File
mod - tests/de/step_1/ZR1 Diff File
mod - tests/de/step_1/ZR2 Diff File
mod - tests/de/step_1/ZR4 Diff File
mod - tests/de/step_1/ZR7 Diff File
mod - tests/de/step_1/ZR8 Diff File
mod - tests/de/step_1/ZR9 Diff File
mod - tests/de/step_1/ZT2 Diff File
mod - tests/de/step_1/ZT3 Diff File
mod - tests/de/step_1/ZT6 Diff File
mod - tests/de/step_1/ZT7 Diff File
mod - tests/de/step_1/ZT8 Diff File
mod - tests/de/step_1/ZT9 Diff File
mod - tests/de/step_1/ZU5 Diff File
mod - tests/de/step_1/ZU6 Diff File
mod - tests/de/step_1/ZU8 Diff File
mod - tests/de/step_1/ZU9 Diff File
mod - tests/de/step_1/ZV2 Diff File
mod - tests/de/step_1/ZV3 Diff File
mod - tests/de/step_1/ZV4 Diff File
mod - tests/de/step_1/ZV5 Diff File
mod - tests/de/step_1/ZV7 Diff File
mod - tests/de/step_1/ZV8 Diff File
mod - tests/de/step_1/ZV9 Diff File
mod - tests/de/step_1/ZW1 Diff File
mod - tests/de/step_1/ZW6 Diff File
mod - tests/de/step_1/ZY4 Diff File
mod - tests/de/step_2/A3 Diff File
mod - tests/de/step_2/A4 Diff File
mod - tests/de/step_2/A7 Diff File
mod - tests/de/step_2/C5 Diff File
mod - tests/de/step_2/C8 Diff File
mod - tests/de/step_2/D5 Diff File
mod - tests/de/step_2/E1 Diff File
mod - tests/de/step_2/E2 Diff File
mod - tests/de/step_2/E3 Diff File
mod - tests/de/step_2/E4 Diff File
mod - tests/de/step_2/F1 Diff File
mod - tests/de/step_2/F2 Diff File
mod - tests/de/step_2/F3 Diff File
mod - tests/de/step_2/H1 Diff File
mod - tests/de/step_2/H4 Diff File
mod - tests/de/step_2/H8 Diff File
mod - tests/de/step_2/J3 Diff File
mod - tests/de/step_2/J4 Diff File
mod - tests/de/step_2/J6 Diff File
mod - tests/de/step_2/J7 Diff File
mod - tests/de/step_2/K1 Diff File
mod - tests/de/step_2/K4 Diff File
mod - tests/de/step_2/K5 Diff File
mod - tests/de/step_2/K8 Diff File
mod - tests/de/step_2/L5 Diff File
mod - tests/de/step_2/L6 Diff File
mod - tests/de/step_2/M4 Diff File
mod - tests/de/step_2/S1 Diff File
mod - tests/de/step_2/S4 Diff File
mod - tests/de/step_2/T8 Diff File
mod - tests/de/step_2/U6 Diff File
mod - tests/de/step_2/U7 Diff File
mod - tests/de/step_2/X3 Diff File
mod - tests/de/step_2/X5 Diff File
mod - tests/de/step_3/B1 Diff File
mod - tests/de/step_3/B4 Diff File
mod - tests/de/step_3/C9 Diff File
mod - tests/de/step_3/E1 Diff File
mod - tests/de/step_3/E3 Diff File
mod - tests/de/step_3/E7 Diff File
mod - tests/de/step_3/E8 Diff File
mod - tests/de/step_3/F4 Diff File
mod - tests/de/step_4/A4 Diff File
mod - tests/de/step_4/A5 Diff File
mod - tests/de/step_4/C7 Diff File
mod - tests/de/step_4/D8 Diff File
mod - tests/de/step_4/E2 Diff File
mod - tests/de/step_4/E5 Diff File
mod - tests/de/step_4/F3 Diff File
mod - tests/de/step_4/G3 Diff File
mod - tests/de/step_4/G4 Diff File
mod - tests/de/step_4/H2 Diff File
mod - tests/de/step_4/H3 Diff File
mod - tests/de/step_4/H4 Diff File
mod - tests/de/step_4/H5 Diff File
mod - tests/de/step_4/H8 Diff File
mod - tests/de/step_5/A2 Diff File
mod - tests/de/step_5/A3 Diff File
mod - tests/de/step_5/A5 Diff File
mod - tests/de/step_5/B1 Diff File
mod - tests/de/step_5/B2 Diff File
mod - tests/de/step_5/B3 Diff File
mod - tests/de/step_5/B5 Diff File
mod - tests/de/step_5/B7 Diff File
mod - tests/demo/draw/bug23745 Diff File
mod - tests/tools/dfbrowser/A4 Diff File
mod - tests/v3d/edge/A10 Diff File
mod - tests/v3d/face/F3 Diff File
mod - tests/v3d/glsl/clipping1 Diff File
mod - tests/v3d/glsl/culldist Diff File
mod - tests/v3d/glsl/cullsize Diff File
mod - tests/v3d/glsl/interior1 Diff File
mod - tests/v3d/glsl/interior2 Diff File
mod - tests/v3d/glsl/msaa Diff File
mod - tests/v3d/glsl/outline1 Diff File
mod - tests/v3d/glsl/phong_pos2 Diff File
mod - tests/v3d/glsl/phong_pos3 Diff File
mod - tests/v3d/glsl/phong_pos4 Diff File
mod - tests/v3d/glsl/tiles Diff File
mod - tests/v3d/materials/bug24855 Diff File
mod - tests/v3d/raytrace/bug24130 Diff File
mod - tests/v3d/raytrace/bug24819 Diff File
mod - tests/v3d/raytrace/bug25201 Diff File
mod - tests/v3d/raytrace/bug26617 Diff File
mod - tests/v3d/raytrace/refraction Diff File
mod - tests/v3d/raytrace/textures Diff File
mod - tests/v3d/transparency/blend Diff File
mod - tests/v3d/viewcube/default Diff File
mod - tests/v3d/viewcube/style Diff File
mod - tests/xcaf/end Diff File

Issue History

Date Modified Username Field Change
2019-09-16 18:32 kgv New Issue
2019-09-16 18:32 kgv Assigned To => kgv
2019-09-16 18:33 kgv Relationship added related to 0029528
2019-09-16 23:10 git Note Added: 0087170
2019-09-16 23:38 git Note Added: 0087172
2019-09-17 06:47 abv Note Added: 0087177
2019-09-17 06:47 abv Target Version 7.4.0 => 7.5.0
2019-09-17 08:16 git Note Added: 0087180
2019-09-17 11:00 git Note Added: 0087190
2019-09-17 13:33 git Note Added: 0087199
2019-09-17 14:47 git Note Added: 0087202
2019-09-17 16:59 git Note Added: 0087206
2019-09-17 18:06 git Note Added: 0087215
2019-09-17 19:05 git Note Added: 0087219
2019-09-17 19:27 git Note Added: 0087221
2019-09-18 01:39 git Note Added: 0087227
2019-09-18 01:46 git Note Added: 0087229
2019-09-18 02:49 git Note Added: 0087231
2019-09-18 10:28 git Note Added: 0087245
2019-09-18 13:07 git Note Added: 0087247
2019-09-18 15:18 git Note Added: 0087257
2019-09-18 17:27 git Note Added: 0087262
2019-09-19 10:18 git Note Added: 0087291
2019-09-19 11:54 git Note Added: 0087294
2019-09-19 21:03 git Note Added: 0087329
2019-09-20 13:07 git Note Added: 0087358
2019-09-20 13:23 git Note Added: 0087361
2019-09-21 22:20 git Note Added: 0087400
2019-09-23 12:32 git Note Added: 0087447
2019-09-23 14:52 kgv Note Added: 0087450
2019-09-23 14:52 kgv Assigned To kgv => osa
2019-09-23 14:52 kgv Status new => resolved
2019-09-24 11:47 osa Note Added: 0087464
2019-09-24 11:47 osa Assigned To osa => bugmaster
2019-09-24 11:47 osa Status resolved => reviewed
2019-10-01 15:36 git Note Added: 0087664
2019-10-06 00:35 kgv Relationship added related to 0031035
2019-10-23 01:07 apn Changeset attached => occt master aaf8d6a9
2019-10-23 01:07 apn Assigned To bugmaster => apn
2019-10-23 01:07 apn Status reviewed => verified
2019-10-23 01:07 apn Resolution open => fixed
2019-10-23 11:51 git Note Added: 0088463
2019-10-23 11:51 git Note Added: 0088464
2019-10-23 11:51 git Note Added: 0088465
2019-10-23 16:51 apn Test case number => Not needed
2020-01-28 15:08 BenjaminBihler Relationship added related to 0031324
2020-12-02 16:40 emo Fixed in Version => 7.5.0
2020-12-02 17:12 emo Status verified => closed