diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2017-12-29 19:54:54 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2017-12-29 19:54:54 +0000 |
| commit | 21ce666aa899e22ec7ac138a5143e2ebd22ff27f (patch) | |
| tree | 7239548a1866820bea7e296a0480ce8b90252b23 | |
| parent | Implemented File2String utility on Linux (diff) | |
| download | DiligentCore-21ce666aa899e22ec7ac138a5143e2ebd22ff27f.tar.gz DiligentCore-21ce666aa899e22ec7ac138a5143e2ebd22ff27f.zip | |
Updated readme
| -rw-r--r-- | Graphics/GraphicsTools/readme.md | 26 | ||||
| -rw-r--r-- | README.md | 7 |
2 files changed, 5 insertions, 28 deletions
diff --git a/Graphics/GraphicsTools/readme.md b/Graphics/GraphicsTools/readme.md deleted file mode 100644 index 08d612d5..00000000 --- a/Graphics/GraphicsTools/readme.md +++ /dev/null @@ -1,26 +0,0 @@ - -# GraphicsTools - -Implementation of common grpahics Utilities - -# Release Notes - -## 2.1 - -### New features - -* Added [TextureUploader](include/TextureUploaderGL.h) interface and its implementations on - [D3D11](include/TextureUploaderD3D11.h), [D3D12](include/TextureUploaderD3D12.h), [OpenGL/GLES](include/TextureUploaderGL.h) - -## 2.0 - -Reworked the API to follow D3D12 style - -## 1.0 - -Initial release - - -**Copyright 2015-2017 Egor Yusov** - -[Diligent Graphics](http://diligentgraphics.com)
\ No newline at end of file @@ -17,18 +17,21 @@ OpenGL and OpenGLES as well as basic platform-specific utilities. | Project | Description | |------------------------------------------------------------------|-------------------| - | [Common](Common) | common functionality such as file wrapper, logging, debug utilities etc. | + | [Primitives](Primitives) | definition of basic types (Int32, Int16, Uint32, etc.) and interfaces (IObject, IReferenceCounters, etc.) | + | [Common](Common) | common functionality such as file wrapper, logging, debug utilities, etc. | + | [Graphics/GraphicsAccessories](Graphics/GraphicsAccessories) | basic graphics accessories used by all implementations | | [Graphics/GraphicsEngine](Graphics/GraphicsEngine) | platform-independent base functionality | | [Graphics/GraphicsEngineD3DBase](Graphics/GraphicsEngineD3DBase) | base functionality for D3D11/D3D12 implementations | | [Graphics/GraphicsEngineD3D11](Graphics/GraphicsEngineD3D11) | engine implementation with Direct3D11 | | [Graphics/GraphicsEngineD3D12](Graphics/GraphicsEngineD3D12) | engine implementation with Direct3D12 | | [Graphics/GraphicsEngineOpenGL](Graphics/GraphicsEngineOpenGL) | engine implementation with OpenGL/GLES | - | [Graphics/GraphicsTools](Graphics/GraphicsTools) | basic graphics utilities | + | [Graphics/GraphicsTools](Graphics/GraphicsTools) | graphics utilities build on top of core interfaces (definitions of commonly used states, texture uploaders, etc.) | | [Graphics/HLSL2GLSLConverterLib](Graphics/HLSL2GLSLConverterLib) | HLSL to GLSL source code converter library | | [Platforms/Basic](Platforms/Basic) | defines interface for platform-specific routines and implements some common functionality | | [Platforms/Android](Platforms/Android) | implementation of platform-specific routines on Android | | [Platforms/UWP](Platforms/UWP) | implementation of platform-specific routines on Universal Windows platform | | [Platforms/Win32](Platforms/Win32) | implementation of platform-specific routines on Win32 platform | + | [Platforms/Linux](Platforms/Linux) | implementation of platform-specific routines on Linux platform | | External/glew | cross-platform library for loading OpenGL extensions | |
