Files
mesa/src/amd/vpelib
Hsieh, Mike 33d88f797b amd/vpelib: Add UID for 3d Lut and control logic
[WHY]
3D lut generation takes time, we need to cache it and identify it as it
updated.

[HOW]
Add unique id when new 3d lut is generated.
Add control logic with UID.

Reviewed-by: Jesse Agate <jesse.agate@amd.com>
Acked-by: Alan Liu <haoping.liu@amd.com>
Signed-off-by: Mike Hsieh <Mike.Hsieh@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27239>
2024-02-06 14:55:02 +00:00
..

VPE-LIB

VPE C library for AMD drivers

Folder Architecture

[root]
 |
 +-- [inc]  ## public header to external modules
 |
 +-- [src]  ##internal implementation
     |
     +-- [chip]  ## store chip specific files
     |    |
     |    +-- [vpeXX]  ## asic specific files e.g. vpe10
     |           |
     |           +-- [inc]  ## all headers for vpe[XX]
     |                 |
     |                 +-- [asic]   ## store all headers that
     |                              ## could conflict with headers in other asics
     |                              ## src file has to explicitly include the files here
     |                              ## without relying the compilation include directory path
     |
     |
     + -- [core]  ## files that share for all asics
     |    |
     |    +-- [inc]  ## define the base functions that each vpe[xx] should implement
     |
     -- [utils]  ## utility functions like fixed point or u64 calculation
          |
          +-- [inc] ## utils headers