mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The purpose of this functionality is to bring a basic ray-tracing solution to existing OCCT visualization toolkit (TKOpenGL). Currently ray-tracing visualization core supports sharp shadows, specular reflections, transparency and adaptive anti-aliasing. However, the basis for all ray-tracing algorithms is versatile, allowing you to add new ray-tracing features easily (such as ambient occlusion). All ray-tracing computations are performed on the GPU using OpenCL framework, allowing real-time rendering performance. It is important to note, that real-time ray-tracing is possible using high-performance GPUs with support of OpenCL 1.1 and higher (such as NVIDIA GeForce 660 or ATI/AMD Radeon 7850). When using low-end GPUs (such as NVIDIA GeForce 640) the ray-tracing performance may slow down significantly. Therefore, even with NVIDIA GeForce 640 you can render scenes with the millions of triangles. The support of OpenCL-enabled CPUs and integrated graphics cards is not guaranteed.
75 lines
1.4 KiB
Plaintext
75 lines
1.4 KiB
Plaintext
.gitattributes eol=lf
|
|
.gitignore eol=lf
|
|
*.txt eol=lf
|
|
*.h eol=lf
|
|
*.c eol=lf
|
|
*.inl eol=lf
|
|
*.cpp eol=lf
|
|
*.cxx eol=lf
|
|
*.gxx eol=lf
|
|
*.hxx eol=lf
|
|
*.ixx eol=lf
|
|
*.jxx eol=lf
|
|
*.lxx eol=lf
|
|
*.pxx eol=lf
|
|
*.cl eol=lf
|
|
*.cdl eol=lf
|
|
*.edl eol=lf
|
|
*.yacc eol=lf
|
|
*.lex eol=lf
|
|
*.mm eol=lf
|
|
*.el eol=lf
|
|
*.sh eol=lf
|
|
*.csh eol=lf
|
|
*.tcl eol=lf
|
|
*.workspace eol=lf
|
|
*.cbp eol=lf
|
|
*.svg eol=lf
|
|
*.xib eol=lf
|
|
*.plist eol=lf
|
|
*.java eol=lf
|
|
*.igs eol=lf
|
|
*.iges eol=lf
|
|
*.stp eol=lf
|
|
*.step eol=lf
|
|
*.brep eol=lf
|
|
*.rle eol=lf
|
|
*.vrml eol=lf
|
|
*.md eol=lf
|
|
FILES eol=lf
|
|
PACKAGES eol=lf
|
|
EXTERNLIB eol=lf
|
|
UDLIST eol=lf
|
|
*.bat eol=crlf
|
|
*.cmd eol=crlf
|
|
*.rc eol=crlf
|
|
*.cs eol=crlf
|
|
*.def eol=crlf
|
|
*.iss eol=crlf
|
|
*.ini eol=crlf
|
|
*.lng eol=crlf
|
|
*.vcproj eol=crlf
|
|
*.csproj eol=crlf
|
|
*.vcxproj* eol=crlf
|
|
*.sln eol=crlf
|
|
*.res eol=crlf
|
|
*.resx eol=crlf
|
|
*.dll binary
|
|
*.so binary
|
|
*.dylib binary
|
|
*.7z binary
|
|
*.pdf binary
|
|
*.png binary
|
|
*.jpg binary
|
|
*.bmp binary
|
|
*.gif binary
|
|
*.xwd binary
|
|
*.ico binary
|
|
*.icns binary
|
|
*.std binary
|
|
*.gz binary
|
|
*.doc binary
|
|
*.rgb binary
|
|
*.mft binary
|
|
*.stl binary
|