mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Get textures sortof displaying.
This commit is contained in:
parent
e15b963279
commit
a229f20525
1 changed files with 7 additions and 5 deletions
|
@ -30,7 +30,7 @@ NOTE: I am specifically not using cached image reps, because the data is also ne
|
|||
return YES;
|
||||
}
|
||||
|
||||
-drawSelf: (const NSRect *) rects:(int) rectCount
|
||||
-drawRect: (NSRect) rects
|
||||
{
|
||||
int i;
|
||||
int max;
|
||||
|
@ -48,8 +48,8 @@ NOTE: I am specifically not using cached image reps, because the data is also ne
|
|||
PSrotate (0);
|
||||
|
||||
PSsetgray (NSLightGray);
|
||||
PSrectfill (rects->origin.x, rects->origin.y,
|
||||
rects->size.width, rects->size.height);
|
||||
PSrectfill (rects.origin.x, rects.origin.y,
|
||||
rects.size.width, rects.size.height);
|
||||
|
||||
if (!list_i) // WADfile didn't init
|
||||
return self;
|
||||
|
@ -85,7 +85,7 @@ NOTE: I am specifically not using cached image reps, because the data is also ne
|
|||
r.origin.x -= TEX_INDENT / 2;
|
||||
r.size.width += TEX_INDENT;
|
||||
r.origin.y += 4;
|
||||
if (NSIntersectsRect (rects[0], r) == YES && t->display) {
|
||||
if (NSIntersectsRect (rects, r) == YES && t->display) {
|
||||
if (selected == i) {
|
||||
PSsetgray (1);
|
||||
PSrectfill (r.origin.x, r.origin.y,
|
||||
|
@ -98,7 +98,9 @@ NOTE: I am specifically not using cached image reps, because the data is also ne
|
|||
|
||||
p = t->r.origin;
|
||||
p.y += TEX_SPACING;
|
||||
[t->image drawAtPoint: p fromRect: r operation: NSCompositeCopy fraction:1.0];
|
||||
//[t->image drawAtPoint: p fromRect: r operation: NSCompositeCopy fraction:1.0];
|
||||
//[t->image drawAtPoint: p];
|
||||
[t->image drawInRect: t->r];
|
||||
x = t->r.origin.x;
|
||||
y = t->r.origin.y + 7;
|
||||
PSmoveto (x, y);
|
||||
|
|
Loading…
Reference in a new issue