summaryrefslogtreecommitdiff
path: root/beos/bitmap.cpp
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-11-26 11:34:12 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-11-26 11:34:12 +0000
commit840284b24d1a03c14592dd907894b136a37c495c (patch)
treedc8b781ea18d2d5d082ed02b1ddef6421ac7326b /beos/bitmap.cpp
parent7915708b583699f16412d5eeab6a42602319e720 (diff)
parent2836c1775ab1f3bd4257f7ab43f21366b60a2206 (diff)
downloadnetsurf-840284b24d1a03c14592dd907894b136a37c495c.tar.gz
netsurf-840284b24d1a03c14592dd907894b136a37c495c.tar.bz2
Merge remote-tracking branch 'origin/mmu_man/beos-fixes'
Diffstat (limited to 'beos/bitmap.cpp')
-rw-r--r--beos/bitmap.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/beos/bitmap.cpp b/beos/bitmap.cpp
index 83dedf780..02724a047 100644
--- a/beos/bitmap.cpp
+++ b/beos/bitmap.cpp
@@ -106,7 +106,6 @@ static inline void nsbeos_rgba_to_bgra(void *src, void *dst, int width, int heig
void *bitmap_create(int width, int height, unsigned int state)
{
- CALLED();
struct bitmap *bmp = (struct bitmap *)malloc(sizeof(struct bitmap));
if (bmp == NULL)
return NULL;
@@ -288,7 +287,6 @@ bool bitmap_save(void *vbitmap, const char *path, unsigned flags)
* \param vbitmap a bitmap, as returned by bitmap_create()
*/
void bitmap_modified(void *vbitmap) {
- CALLED();
struct bitmap *bitmap = (struct bitmap *)vbitmap;
// convert the shadow (ABGR) to into the primary bitmap
nsbeos_rgba_to_bgra(bitmap->shadow->Bits(), bitmap->primary->Bits(),