X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2FREADME.portability;h=9fbec4c5f5cd7c87f8f970db55b7904007e47e8b;hb=3cf6325e724dbc20076629983dd1fed5ecac533a;hp=18a97f449b498aa9e9dc4bd2018aacc058f4f6a8;hpb=33d9e213ee47aab32f662caf3e7c07c2697befbe;p=mesa.git diff --git a/src/gallium/README.portability b/src/gallium/README.portability index 18a97f449b4..9fbec4c5f5c 100644 --- a/src/gallium/README.portability +++ b/src/gallium/README.portability @@ -3,18 +3,16 @@ = General Considerations = -The state tracker and winsys driver support a rather limited number of +The frontend and winsys driver support a rather limited number of platforms. However, the pipe drivers are meant to run in a wide number of platforms. Hence the pipe drivers, the auxiliary modules, and all public -headers in general, should stricly follow these guidelines to ensure +headers in general, should strictly follow these guidelines to ensure = Compiler Support = * Include the p_compiler.h. -* Don't use the 'inline' keyword, use the INLINE macro in p_compiler.h instead. - * Cast explicitly when converting to integer types of smaller sizes. * Cast explicitly when converting between float, double and integral types. @@ -35,8 +33,8 @@ not available in Windows Kernel Mode. Use the appropriate p_*.h include. * Use MALLOC, CALLOC, FREE instead of the malloc, calloc, free functions. -* Use align_pointer() function defined in p_util.h for aligning pointers in a -portable way. +* Use align_pointer() function defined in u_memory.h for aligning pointers + in a portable way. == Debugging ==