dri: Expand driParseDebugString return value to uint64_t.
Users will downcast if they don't have >32 debug flags. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include "main/macros.h"
|
||||
#include "main/mtypes.h"
|
||||
#include "main/cpuinfo.h"
|
||||
@@ -40,14 +41,12 @@
|
||||
#include "dri_util.h"
|
||||
|
||||
|
||||
unsigned
|
||||
uint64_t
|
||||
driParseDebugString( const char * debug,
|
||||
const struct dri_debug_control * control )
|
||||
{
|
||||
unsigned flag;
|
||||
uint64_t flag = 0;
|
||||
|
||||
|
||||
flag = 0;
|
||||
if ( debug != NULL ) {
|
||||
while( control->string != NULL ) {
|
||||
if ( !strcmp( debug, "all" ) ||
|
||||
|
||||
@@ -34,10 +34,10 @@
|
||||
|
||||
struct dri_debug_control {
|
||||
const char * string;
|
||||
unsigned flag;
|
||||
uint64_t flag;
|
||||
};
|
||||
|
||||
extern unsigned driParseDebugString( const char * debug,
|
||||
extern uint64_t driParseDebugString( const char * debug,
|
||||
const struct dri_debug_control * control );
|
||||
|
||||
extern unsigned driGetRendererString( char * buffer,
|
||||
|
||||
Reference in New Issue
Block a user