Browse Source

Fix windows build.

tags/mesa_20090313
José Fonseca 17 years ago
parent
commit
5480a6bc13

+ 2
- 1
src/gallium/auxiliary/rtasm/rtasm_execmem.c View File

@@ -33,6 +33,7 @@
#include "pipe/p_compiler.h"
#include "pipe/p_debug.h"
#include "pipe/p_thread.h"
#include "pipe/p_util.h"

#include "rtasm_execmem.h"

@@ -118,7 +119,7 @@ rtasm_exec_free(void *addr)
*/

void *
rtasm_exec_malloc(GLuint size)
rtasm_exec_malloc(size_t size)
{
return MALLOC( size );
}

+ 1
- 1
src/gallium/auxiliary/rtasm/rtasm_x86sse.c View File

@@ -21,7 +21,7 @@
*
**************************************************************************/

#if defined(__i386__) || defined(__386__)
#if defined(__i386__) || defined(__386__) || defined(i386)

#include "pipe/p_compiler.h"
#include "pipe/p_debug.h"

+ 1
- 1
src/gallium/auxiliary/rtasm/rtasm_x86sse.h View File

@@ -24,7 +24,7 @@
#ifndef _RTASM_X86SSE_H_
#define _RTASM_X86SSE_H_

#if defined(__i386__) || defined(__386__)
#if defined(__i386__) || defined(__386__) || defined(i386)

/* It is up to the caller to ensure that instructions issued are
* suitable for the host cpu. There are no checks made in this module

Loading…
Cancel
Save