@@ -2736,39 +2736,39 @@ void R_CreateBuiltinImages()
27362736 imageParams.filterType = filterType_t::FT_LINEAR;
27372737 imageParams.wrapType = wrapTypeEnum_t::WT_REPEAT;
27382738
2739- tr.whiteImage = R_CreateImage ( " _white " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
2739+ tr.whiteImage = R_CreateImage ( " $whiteimage " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
27402740
27412741 // we use a solid black image instead of disabling texturing
27422742 Vector4Set ( data, 0 , 0 , 0 , 255 );
27432743
2744- tr.blackImage = R_CreateImage ( " _black " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
2744+ tr.blackImage = R_CreateImage ( " $blackimage " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
27452745
27462746 // red
27472747 Vector4Set ( data, 255 , 0 , 0 , 255 );
27482748
2749- tr.redImage = R_CreateImage ( " _red " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
2749+ tr.redImage = R_CreateImage ( " $redimage " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
27502750
27512751 // green
27522752 Vector4Set ( data, 0 , 255 , 0 , 255 );
27532753
2754- tr.greenImage = R_CreateImage ( " _green " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
2754+ tr.greenImage = R_CreateImage ( " $greenimage " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
27552755
27562756 // blue
27572757 Vector4Set ( data, 0 , 0 , 255 , 255 );
27582758
2759- tr.blueImage = R_CreateImage ( " _blue " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
2759+ tr.blueImage = R_CreateImage ( " $blueimage " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
27602760
27612761 // null
27622762 memset ( data, 0 , sizeof ( data ) );
27632763
2764- tr.nullImage = R_CreateImage ( " _null " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
2764+ tr.nullImage = R_CreateImage ( " $nullimage " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
27652765
27662766 // generate a default normalmap with a fully opaque heightmap (no displacement)
27672767 Vector4Set ( data, 128 , 128 , 255 , 255 );
27682768
27692769 imageParams.bits = IF_NOPICMIP | IF_NORMALMAP;
27702770
2771- tr.flatImage = R_CreateImage ( " _flat " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
2771+ tr.flatImage = R_CreateImage ( " $flatimage " , ( const byte ** ) &dataPtr, 1 , 1 , 1 , imageParams );
27722772
27732773 imageParams.bits = IF_NOPICMIP;
27742774 imageParams.wrapType = wrapTypeEnum_t::WT_CLAMP;
0 commit comments