blob: bd719296daa66c6c75289e0000eabbb0586e9b27 [file] [log] [blame] [view]
Nicolas Capens1703e0f2016-05-12 17:27:05 -04001SwiftShader
2==========
3
4Introduction
5-----------------
6
7SwiftShader is a high-performance CPU-based implementation of the OpenGL ES and Direct3D 9 graphics APIs<sup>1</sup><sup>2</sup>. Its goal is to provide hardware independence for advanced 3D graphics.
8
9Usage
10--------
11
12The SwiftShader libraries act as drop-in replacements for graphics drivers.
13
14On Windows, most applications can be made to use SwiftShader's DLLs by placing them in the same folder as the executable. On Linux, the LD\_LIBRARY\_PATH environment variable or -rpath linker option can be used to direct applications to search for shared libraries in the indicated directory first.
15
Nicolas Capensf241f932016-08-11 12:48:23 -040016Prebuilt binaries can be found at: https://goo.gl/5MOcdb
17
Nicolas Capens1703e0f2016-05-12 17:27:05 -040018Contributing
19-----------------
20
Nicolas Capenscf83d162016-07-02 23:41:30 -040021See [CONTRIBUTING.txt](CONTRIBUTING.txt) for important contributing requirements.
Nicolas Capens1703e0f2016-05-12 17:27:05 -040022
Nicolas Capenscf83d162016-07-02 23:41:30 -040023The canonical repository for SwiftShader is hosted at:
Nicolas Capens1703e0f2016-05-12 17:27:05 -040024https://swiftshader.googlesource.com/SwiftShader
25
Nicolas Capenscf83d162016-07-02 23:41:30 -040026All changes must be reviewed and approved in the [Gerrit](https://www.gerritcodereview.com/) review tool at:
Nicolas Capens1703e0f2016-05-12 17:27:05 -040027https://swiftshader-review.googlesource.com
28
Nicolas Capenscf83d162016-07-02 23:41:30 -040029Authenticate your account here:
30https://swiftshader-review.googlesource.com/new-password
31
32All changes require a [Change-ID](https://gerrit-review.googlesource.com/Documentation/user-changeid.html) tag in the commit message. A commit hook may be used to add this tag automatically, and can be found at:
Nicolas Capens1703e0f2016-05-12 17:27:05 -040033https://gerrit-review.googlesource.com/tools/hooks/commit-msg. To clone the repository and install the commit hook in one go:
34
35 git clone https://swiftshader.googlesource.com/SwiftShader && (cd SwiftShader && curl -Lo `git rev-parse --git-dir`/hooks/commit-msg https://gerrit-review.googlesource.com/tools/hooks/commit-msg ; chmod +x `git rev-parse --git-dir`/hooks/commit-msg)
36
Nicolas Capenscf83d162016-07-02 23:41:30 -040037Changes are uploaded to Gerrit by performing:
Nicolas Capens1703e0f2016-05-12 17:27:05 -040038
39 git push origin HEAD:refs/for/master
40
Nicolas Capens63883022016-05-30 11:03:26 -040041Documentation
42-------------
43
Nicolas Capens1bc61382016-05-30 15:29:09 -040044See [docs/Index.md](docs/Index.md).
Nicolas Capens63883022016-05-30 11:03:26 -040045
Nicolas Capens1703e0f2016-05-12 17:27:05 -040046Contact
47-----------
48
Nicolas Capensd851f232016-08-01 15:36:23 -040049Public mailing list: [swiftshader@googlegroups.com](https://groups.google.com/forum/#!forum/swiftshader)
Nicolas Capens1703e0f2016-05-12 17:27:05 -040050
Nicolas Capenscf83d162016-07-02 23:41:30 -040051Bug tracker: https://bugs.chromium.org/p/swiftshader
Nicolas Capens22b17b02016-06-17 13:39:18 -040052
Nicolas Capens1703e0f2016-05-12 17:27:05 -040053License
54----------
55
Nicolas Capenscf83d162016-07-02 23:41:30 -040056The SwiftShader project is licensed under the Apache License Version 2.0. You can find a copy of it in [LICENSE.txt](LICENSE.txt).
Nicolas Capens1703e0f2016-05-12 17:27:05 -040057
58Files in the third_party folder are subject to their respective license.
59
60Authors and Contributors
61-----------------------------------
62
Nicolas Capenscf83d162016-07-02 23:41:30 -040063The legal authors for copyright purposes are listed in [AUTHORS.txt](AUTHORS.txt).
Nicolas Capens1703e0f2016-05-12 17:27:05 -040064
Nicolas Capenscf83d162016-07-02 23:41:30 -040065[CONTRIBUTORS.txt](CONTRIBUTORS.txt) contains a list of names of individuals who have contributed to SwiftShader. If you're not on the list, but you've signed the [Google CLA](https://cla.developers.google.com/clas) and have contributed more than a formatting change, feel free to request to be added.
Nicolas Capens1703e0f2016-05-12 17:27:05 -040066
67Disclaimer
68---------------
69
701. Trademarks are the property of their respective owners.
712. We do not claim official conformance with any graphics APIs at this moment.
723. This is not an official Google product.