Skip to content

Commit

Permalink
Merge branch 'master' of github.com:bkaradzic/bgfx
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Dec 3, 2014
2 parents a7290af + 54f0c36 commit cafe34e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion examples/common/imgui/imgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ static const int32_t DEFAULT_SPACING = 4;
static const int32_t TEXT_HEIGHT = 8;
static const int32_t SCROLL_AREA_PADDING = 6;
static const int32_t AREA_HEADER = 20;
static const int32_t COLOR_WHEEL_PADDING = 60;
static const float s_tabStops[4] = {150, 210, 270, 330};

static void* imguiMalloc(size_t size, void* /*_userptr*/)
Expand Down
17 changes: 9 additions & 8 deletions src/bgfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ namespace bgfx
.end();

ShaderHandle vsh = BGFX_INVALID_HANDLE;

struct Mem
{
Mem(const void* _data, size_t _size)
Expand Down Expand Up @@ -2245,6 +2245,7 @@ namespace bgfx
_width = bx::uint32_max(1, _width);
_height = bx::uint32_max(1, _height);
_depth = bx::uint32_max(1, _depth);
_numMips = bx::uint32_max(1, _numMips);

uint32_t width = _width;
uint32_t height = _height;
Expand All @@ -2261,17 +2262,17 @@ namespace bgfx

size += width*height*depth*bpp/8;

width >>= 1;
width >>= 1;
height >>= 1;
depth >>= 1;
depth >>= 1;
}

_info.format = _format;
_info.storageSize = size;
_info.width = _width;
_info.height = _height;
_info.depth = _depth;
_info.format = _format;
_info.width = _width;
_info.height = _height;
_info.depth = _depth;
_info.numMips = _numMips;
_info.storageSize = size;
_info.bitsPerPixel = bpp;
}

Expand Down

0 comments on commit cafe34e

Please sign in to comment.