Branimir Karadžić il y a 7 ans
Parent
commit
20cba39df6
2 fichiers modifiés avec 18 ajouts et 12 suppressions
  1. 2 2
      src/bgfx.cpp
  2. 16 10
      src/bgfx_p.h

+ 2 - 2
src/bgfx.cpp

@@ -561,7 +561,7 @@ namespace bgfx
 			num = bx::vsnprintf(temp, num, _format, argListCopy);
 
 			uint8_t attr = _attr;
-			struct MemSlot* mem = &m_mem[_y*m_width+_x];
+			MemSlot* mem = &m_mem[_y*m_width+_x];
 			for (uint32_t ii = 0, xx = _x; ii < num && xx < m_width; ++ii)
 			{
 				char ch = temp[ii];
@@ -697,7 +697,7 @@ namespace bgfx
 			for (; yy < _mem.m_height && numIndices < numBatchIndices; ++yy)
 			{
 				xx = xx < _mem.m_width ? xx : 0;
-				const struct TextVideoMem::MemSlot* line = &_mem.m_mem[yy*_mem.m_width+xx];
+				const TextVideoMem::MemSlot* line = &_mem.m_mem[yy*_mem.m_width+xx];
 
 				for (; xx < _mem.m_width && numIndices < numBatchIndices; ++xx)
 				{

+ 16 - 10
src/bgfx_p.h

@@ -495,20 +495,21 @@ namespace bgfx
 				uint32_t size = m_size;
 				m_size = m_width * m_height;
 
-				m_mem = (struct MemSlot*)BX_REALLOC(g_allocator, m_mem, m_size * sizeof(struct MemSlot));
+				m_mem = (MemSlot*)BX_REALLOC(g_allocator, m_mem, m_size * sizeof(MemSlot));
 
 				if (size < m_size)
 				{
-					bx::memSet(&m_mem[size], 0, (m_size-size) * sizeof(struct MemSlot));
+					bx::memSet(&m_mem[size], 0, (m_size-size) * sizeof(MemSlot));
 				}
 			}
 		}
 
 		void clear(uint8_t _attr = 0)
 		{
-			struct MemSlot* mem = m_mem;
-			bx::memSet(mem, 0, m_size * sizeof(struct MemSlot));
-			if (_attr != 0) {
+			MemSlot* mem = m_mem;
+			bx::memSet(mem, 0, m_size * sizeof(MemSlot));
+			if (_attr != 0)
+			{
 				for (uint32_t ii = 0, num = m_size; ii < num; ++ii)
 				{
 					mem[ii].attribute = _attr;
@@ -530,28 +531,33 @@ namespace bgfx
 		{
 			if (_x < m_width && _y < m_height)
 			{
-				struct MemSlot * dst = &m_mem[_y*m_width+_x];
+				MemSlot* dst = &m_mem[_y*m_width+_x];
 				const uint8_t* src = (const uint8_t*)_data;
 				const uint32_t width  =  bx::min<uint32_t>(m_width,  _width +_x)-_x;
 				const uint32_t height =  bx::min<uint32_t>(m_height, _height+_y)-_y;
 				const uint32_t dstPitch = m_width;
-				for (uint32_t ii = 0; ii < height; ++ii) {
-					for (uint32_t jj = 0; jj < width; ++jj) {
+
+				for (uint32_t ii = 0; ii < height; ++ii)
+				{
+					for (uint32_t jj = 0; jj < width; ++jj)
+					{
 						dst[jj].character = src[jj*2];
 						dst[jj].attribute = src[jj*2+1];
 					}
+
 					src += _pitch;
 					dst += dstPitch;
 				}
 			}
 		}
 
-		struct MemSlot {
+		struct MemSlot
+		{
 			uint8_t attribute;
 			uint8_t character;
 		};
 
-		struct MemSlot* m_mem;
+		MemSlot* m_mem;
 		uint32_t m_size;
 		uint16_t m_width;
 		uint16_t m_height;