mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
glsl2: Use stdint.h instead of inttypes.h
This commit is contained in:
parent
23f6017d70
commit
a77a6bc008
4 changed files with 4 additions and 4 deletions
|
|
@ -97,7 +97,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "glcpp.h"
|
||||
#include "main/mtypes.h"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "glcpp.h"
|
||||
#include "main/mtypes.h"
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
* Replaces calls to functions with the body of the function.
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdint.h>
|
||||
#include "ir.h"
|
||||
#include "ir_visitor.h"
|
||||
#include "ir_function_inlining.h"
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
* a dereference chain.
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdint.h>
|
||||
#include "ir.h"
|
||||
#include "ir_hierarchical_visitor.h"
|
||||
#include "program/hash_table.h"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue