Swing graphics programming

Hello everyone!! can you help;I am new to java programming. I have this project assignment to develop a small sofware that reads a file and use the data in the file to plot the graph, the prgm can read the file when the file name is entered but getting it to plot the graph, i am struggling with. please see the code below
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
import java.awt.geom.*;
import java.awt.Graphics.*;
import java.awt.Graphics2D.*;
public class BioxSim extends JFrame {
     static Float a1=200F,a2=500F;//x
static Float b1=200F,b2=75F;//y
//JTextField to hold input data .
private JTextField data_in;
private JTextField data2_in;
//JLabel to show output results.
private JLabel degreesC;
private JLabel fileLabel;
//JTextArea to hold output results.
private JTextArea ta;
private FileReader readfile ;
private BufferedReader buffer ;
private JButton loadButton;
private JButton plotButton;
private JButton maths1;
private JButton maths2;
private JButton tempConversion;
private JButton saveButton;
private JButton clearButton;
private String line;
//Constructor for GoodDocs class - this method is used to set up the GUI
public BioxSim() {
// call the JFrame parent class with the window title
super("Data Conversion");
// we need the container for JFrames in order to add components
Container container = getContentPane();
FlowLayout flow = new FlowLayout();
     container.setLayout(flow);
     JLabel title = new JLabel("**************************************************************** Data Conversion Program *****************************************************");
     container.add(title, new BorderLayout().NORTH);
//pos.gridx = 00; pos.gridy = 00;
// container.add(title);
// private label for the input units
JLabel units = new JLabel("X, Y Data ");
// private label to store prompt text
JLabel prompt = new JLabel(" Input data for [X], [Y] coorinates ");
     JLabel fileLabel = new JLabel("File been Accessed is :" +line );
     // create an instance of the JLabel holding the output result
degreesC = new JLabel("****************************** Example data: Input Degrees F; Output DegreesC Temp ******************************");
// pos.gridx = 0; pos.gridy = 3;
//container.add(prompt, pos);
// create an instance of the JTextField for a specific number of columns
data_in = new JTextField(15);
     data2_in = new JTextField("C: ", 18 );
     ta = new JTextArea(" The Output Data is Used to Plot the graph Below.", 3,62);
     loadButton = new JButton("Load File");     
plotButton =new JButton("PlotGraph");
maths1 = new JButton("Maths1");
maths2 = new JButton("Maths2");
     tempConversion = new JButton("tempConversion");
saveButton = new JButton("Save");
     clearButton = new JButton("Clear");
//pos.gridx =0; pos.gridy = 6;
          container.add(degreesC);
container.add(prompt);
container.add(data_in);
          container.add(units);
          container.add(loadButton);
container.add(data2_in);
          container.add(plotButton);
          container.add( maths1);
          container.add(maths2);
          container.add(tempConversion);
          container.add(saveButton);
container.add(clearButton);
          container.add(fileLabel);
container.add(ta);
          JScrollPane scroll = new JScrollPane(ta,
               JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
               JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
          container.add(scroll);
          CustomPanel panel = new CustomPanel();
          //Dimension dim = new Dimension(500, 400);
          //JPanel panel = new JPanel();
          panel.setPreferredSize( new Dimension(700,300));
panel.setMinimumSize( new Dimension( 200, 100 ) );
          JScrollPane scroll1 = new JScrollPane(panel);
          container.add(scroll1);
// register the TextField event handler - this is an inner class
TextFieldHandler handler = new TextFieldHandler();
data_in.addActionListener(handler);
loadButton.addActionListener(handler);
// set the applications size and make it visible
setSize(800, 550);
setVisible(true);
class CustomPanel extends JPanel
public void paintComponent (Graphics painter)
painter.setColor(Color.white);
painter.fillRect(0,0,getSize().width,getSize().height);
Color customPurple = new Color(128,0,128);
painter.setColor(customPurple);
painter.drawString("graph",250,60);
//Horizontal coordinate of the graph.
     Graphics2D X_line2D = (Graphics2D) painter;
Line2D.Float X_line = new Line2D.Float(40F, 200F, 650F, 200F);
X_line2D.draw(X_line);
X_line2D.drawString("X coordinate", 50, 325);
//Vertical coordinate of the graph.
Graphics2D Y_line2D = (Graphics2D) painter;
Line2D.Float Y_line = new Line2D.Float(200F, 450F, 200F, 20F);
Y_line2D.draw(Y_line);
//Line representing mathematical functions, where a[n],b[n] resp.are variables.
     Graphics2D Y1_line2D = (Graphics2D) painter;
     //graphdata(a2,b2);
Line2D.Float Y1_line = new Line2D.Float(a1, b1, a2, b2);
Y1_line2D.draw(Y1_line);
//This method is used to execute the application */
public static void main(String args[]) {
// create an instance of our application
BioxSim application = new BioxSim();
// set the JFrame properties to respond to the window closing event
application.setDefaultCloseOperation(
JFrame.EXIT_ON_CLOSE );
private String convertFtoC(String input) {
//variables to store the real values of the Strings
double tempF = 0.0;
double tempC = 0.0;
// use a try-catch block to contain data conversion exceptions
try {
// use the Double wrapper class to parse the string to a double
tempF = Double.parseDouble(input);
catch (NumberFormatException nfe) {
// no need to do anything here - errors will leave tempF = 0.0
// perform the conversion
tempC = 5.0 / 9.0 * (tempF - 32.0);
// return the result as a String
return Double.toString(tempC);
private String convertFtoC1(String input) {
// variables to store the real values of the Strings
double tempF = 0.0;
double tempC = 0.0;
// FileReadTest f = new FileReadTest();
// f.readMyFile("input");
// use a try-catch block to contain data conversion exceptions
try {
// use the Double wrapper class to parse the string to a double
tempF = Double.parseDouble(input);
catch (NumberFormatException nfe) {
// no need to do anything here - errors will leave tempF = 0.0
// perform the conversion
tempC = tempF;//5.0 / 9.0 * (tempF - 32.0);
// return the result as a String
return Double.toString(tempC);
/** Class TextFieldHandler implements ActionListner to provide the event handling
for this application. It is a private inner class, which gives it access to
all of the GoodDocs instance variables */
private class TextFieldHandler implements ActionListener {
/** This method is required for an ActionListener to process the events */
public void actionPerformed(ActionEvent event) {
String string = "";
          String filename = null;
String taString;
// The user pressed Enter in the JTextField textField1
if(event.getSource() == data_in){
// retrieve the input as a String
          // degreesC.setText("Input temperature is:" string "DegreeF");
string = convertFtoC(event.getActionCommand());
          ta.setText(string);
// The user pressed Enter in the JTextField textField1
if(event.getSource() == loadButton)
          filename = string;
               // retrieve the input as a String
     filename = data2_in.getText();
               //fileLabel.setText("File been read is : " +filename );
     try
                    readfile = new FileReader(new File(filename));
                    buffer = new BufferedReader (readfile);
                    String lineRead = buffer.readLine();
               //clears the imput area     
               ta.setText("");
                    do
                    ta.append(lineRead+ "\n");
while ((lineRead = buffer.readLine()) != null);
               buffer.close();
               catch (IOException e)
                    if(event.getSource() == clearButton){ 
                    ta.setText("");
} // end of the private inner class TextFieldHandler
} // end of public class GoodDocs
DATA FILE e.g.
Time[sec]     VD[g/m3]     VDFlux[g/m3h]     Flux[g/m2h]     AmbT[C]     AmbRH[%]     ProbeT[C]     ProbeRH[%]     CondenserT[C]     HeatsinkT[C]
0     1.025237E-02     0     -108.264     16.7752     61.27579     23.63191     48.14857     23.30489     23.22949
0.421     1.025237E-02     0     -108.264     16.7752     61.27579     23.63191     48.14857     23.30489     23.22949
0.828     1.025237E-02     0     -108.264     16.7752     61.27579     23.63191     48.14857     23.30489     23.22949
1.218     1.025581E-02     3.179105E-02     -108.229     16.7752     61.2831     23.63191     48.15666     23.30489     23.22949
1.609     1.025891E-02     2.856279E-02     -108.1975     16.7752     61.28748     23.63191     48.16799     23.30489     23.22949
1.968     1.025972E-02     8.050361E-03     -108.1893     16.7752     61.29041     23.63191     48.17554     23.30489     23.22949
2.343     1.026729E-02

Don't forget to use the "Code Formatting Tags",
see http://forum.java.sun.com/help.jspa?sec=formatting,
so the posted code retains its original formatting.

Similar Messages

  • Adding JButtons to a Java2d Graphics program

    Hi,
    I apologise to all you seasoned programmers if this seems an easy question, but I can't seem to see the solution to this one.
    I'm trying to add 2 JButtons to an existing Java2D graphics program. When I run the program I get the following error,
    'java.lang.IllegalArgumentException: adding a window to a container'
    I can't seem to see how to correct this error. My current code is as follows,
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    public class PacMan2Clicks extends JFrame implements ActionListener {
        public static int mode = 0;
        private static JButton rightButton;
        private static JButton leftButton;
        public PacMan2Clicks() {
            Container contentPane = getContentPane();
            JPanel panel = new JPanel();
            leftButton = new JButton("Leftt");
            leftButton.addActionListener(this);
            panel.add(leftButton);
            rightButton = new JButton("Right");
            rightButton.addActionListener(this);
            panel.add(rightButton);
            contentPane.add(panel, BorderLayout.SOUTH);
        public void paintComponent(Graphics g) {
            Dimension d = getSize();
            Graphics2D g2 = (Graphics2D)g;
            int size = 100;
            Ellipse2D.Double head =
                    new Ellipse2D.Double(0, 0, size, size);
            Ellipse2D.Double eye =
                    new Ellipse2D.Double(size/2-1, size/5-1,
                    size/10, size/10);
            GeneralPath mouth = new GeneralPath();
            mouth.moveTo(size, size/4);
            mouth.lineTo(size/8, size/2);
            mouth.lineTo(size, size*3/4);
            mouth.closePath();
            Area pacman = new Area(head);
            pacman.subtract(new Area(eye));
            pacman.subtract(new Area(mouth));
            g2.setPaint(Color.yellow);
            g2.fill(pacman);
            g2.setPaint(Color.black);
            g2.draw(pacman);
        public void actionPerformed(ActionEvent event) {
            if(event.getSource().equals(rightButton)) {
            } else if(event.getSource().equals(leftButton)) {
        public static void main(String[] args) {
            JFrame frame = new JFrame("Drawing stuff");
            frame.add(new PacMan2Clicks());
            frame.setSize(600, 600);
            //frame.setContentPane(new PacMan2Clicks());
            frame.setVisible(true);
            frame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
    }Any help appreciated. Thank you.

    Your public class extends JFrame so it is a JFrame. In your main method you create a new JFrame and try to add the enclosing class (a JFrame by extension) to it. So you can either:
    1 — remove the JFrame extension from the class declaration and leave the code in the main method as—is:
    public class PM2C implements ActionListener {or,
    2 — leave the JFrame extension and remove the new JFrame instance in the main method.
    public class PM2C extends JFrame implements ActionListener {
        public PM2C(String title) {
            super(title);
            addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
            Container contentPane = getContentPane();
            JPanel panel = new JPanel();
            leftButton = new JButton("Leftt");
            leftButton.addActionListener(this);
            panel.add(leftButton);
            rightButton = new JButton("Right");
            rightButton.addActionListener(this);
            panel.add(rightButton);
            contentPane.add(panel, BorderLayout.SOUTH);
            setSize(600, 600);
            setVisible(true);
        public static void main(String[] args) {
            new PM2C("Drawing stuff");
    }

  • Mountain Lion graphics program recommendation

    Can anyone suggest a decent graphics program that will run in mountain lion?  Nothing really high level or expensive, but that can do some mid-level draw and paint creation and editing?

    Pixelmator is highly rated. As is Red Pill.

  • Looking for graphics program

    OK, not sure if this is the right forum, but I couldn't find a better spot.
    I'm looking for recommendations for a good middle of the road graphics program for my Mac. On my PC I used Paint Shop Pro. Photoshop is expensive and way too powerful. I'm looking to edit picutres and design some website grade graphics.
    Any ideas?
    Thanks!

    There are many graphics applications available. Preview can do some elementary image editing. iPhoto can do more. For more advanced image editing, here is a list of six, off the top of my head; I am sure there are more:
    Gimp - Needs X11.
    Gimpshop - Gimp variant. It's supposed to be more Photoshop-like. Needs X11.
    http://plasticbugs.com/?page_id=294
    Seashore - Open source Cocoa. Partially based on Gimp, but not X11.
    http://seashore.sourceforge.net/
    Graphic Converter - Shareware, worth many times its price. It is not the most powerful image editor in this list, but it does much more. Its real forte is opening any graphic format you are ever likely to encounter, and many, many more. Anybody who works with image files should have a copy.
    Color It! - Comparable to Photoshop elements in features, but cheaper, and much faster.
    Photoshop Elements - Much cheaper than Photoshop, but more than enough for most non-professionals.
    Gimp and Gimpshop use X11, which makes them rather un-Mac-like, but they are free. I have not really used any of the free ones, since I already have the other three. If I needed a free app, Seashore is the one I would try. Graphic Converter and Color It! are my favorites. Photoshop Elements is probably the most powerful.

  • MacBook Pro slow after using graphics programs

    I'm an architecture student and I have a MacBook Pro 15 ', bought in January 2009 (Intel Core 2 Duo 2.53 GHz / 4 GB Ram / 320 GB HD / NVIDIA GeForce 9400M 256 Mb - NVIDIA GeForce 6600M GT 512MB) with Snow Leopard (Mac OS X 10.6.7).
    While studying architecture I find myself often using graphics programs, with jobs that require lots of computing power, this is the second time I have the same problem:
    - Use Photoshop CS5 with a large file (around a 1 GB), the computer is not connected with the power, thus using the battery.
    The next day I turn on the computer, is considerably slower, noting that the Dock is not fluid, the application menu is jerky, and when moving from one Space to another is no more fluidity.
    If I start to use some programs, or even just listening to music with iTunes and surf the Web, is very slow.
    I've already done this, so almost the same a few months ago, I tried resetting PRAM and NVRAM, disk repair, repair disk permissions, delete cache system,
    I checked the processes in Activity Monitor, closing the most expensive and controlling those that run on Login, I disabled Spotlight, almost complete depletion of HD, removal of most of the programs and any other what is usually recommended in these cases. But nothing worked, until I used the startup disk by deleting everything.
    A months later I have the same problem, and I have tried everything I already tried, but the formatting.
    In addition to solving the problem, now I would also understand why every time I use my MacBook Pro from € 2000, bought specifically for work with these types of programs and files, I have this type of problems.
    Thank you in advance for your interest and hope to receive your early clarification on the matter.

    Duplicate post. Reported.

  • IPad 2 Question - Graphics Program Automatically Opens???

    Hello!
    Whenever I connect my iPad 2 to my computer, iTunes opens, but it also causes my graphic program to open, which is very annoying. I looked thru preferences in iTunes with no luck. Any ideas??
    Thanks!
    ~~Shari

    Resolved Issue . . . Posting Resolution in case someone has same issue
    I found where to specify by going to My Computer which showed my iPad icon, then I right clicked to get Properties, and it allowed me to change the option to Open With Specific Program, which was PhotoImpact, or Take No Action, which is what I change it to.
    Thanks for everyones help!!!
    ~~Shari

  • [Solved] Launching Graphical Programs From The Terminal

    Occasionally I launch graphical programs from the terminal and they usually spit out what they're doing in the background, I know you can send this output to /dev/null but is there a way to have that is the default setting (ex. not having to type &> /dev/null each time) and then somehow turn console output back on when I want to debug something? I tried creating an alias but that didn't work.
    Last edited by brando56894 (2011-07-26 04:17:11)

    brando56894 wrote:
    I put it in my .bashrc and when I reload .bashrc I get this:
    bash: /home/bran/.bashrc: line 12: syntax error near unexpected token `;'
    bash: /home/bran/.bashrc: line 12: `no() { "$1"&>/dev/null & ;}'
    Remove that '&' and try again. (remember to reload the .bashrc)
    jasonwryan wrote:What, exactly, did you put in your .bashrc?
    He used your function but with "my" '&' - w/o 'nohup'.
    Last edited by karol (2011-07-26 04:25:55)

  • The birth of graphical programming.

    I recently found this video, which describes the work Bert Sutherland taken as part of is PhD on graphical programming.
    It's really fascinating to see the source of many of the conventions we now use in LabVIEW; what do you guys think?
    Alex Thomas, University of Manchester School of EEE LabVIEW Ambassador (CLAD)

    Hornless.Rhino wrote:
    That gives me an idea..... that would get me sued into oblivion.
    That's a pretty interesting point... I mean, G is a programming language. I don't understand why it should be considered an infringement of copyright or patents if another application takes the conventions established in LabVIEW and reuses them. I mean, a high level While Loop looks the same in any text language, right?
    I suppose the reason I mention this is because over the past year I've been working on a project to create a Java-based G-based programming environment that could be used to generate abstract text code (The example language was Verilog) as part of some individual project we're supposed to work on within university. Originally I was going to do this from within LabVIEW and use VI Scripting to parse the Block Diagram but I ran into some problems when developing a clean architecture that was flexible enough to perform different actions based on a specific GObject instance it was dealing with, so although there was a huge overhead in developing the graphical environment from scratch, I figured it'd lend itself to more specific customisation later on. I ended up learning a great deal too.
    The project has been a success but I've talked to some of the field guys from NI and we decided that it'd be unsuitable for me to put it online. Originally I wanted it to be open source because it would serve as a cute attempt to understanding how LabVIEW works; but it's understandable as to why I can't do that. It must look really strange to them considered I worked with them as an intern for a year... I have to confess that the whole time I spent in technical support, I was really longing to see what LabVIEW was doing in the background and never had the chance to. This project truly felt like my only real chance.
    The way it worked was so that rather than just Verilog, you could pretty much override the conversion stage at any level and use any text you want with it. Because it had this format, things like the re-entrancy would need to be explicitly coded from within the diagram. There was no Front Panel either.  Any newly developed graphical code would have a textual equivalent for any supported language... At the moment, for the few graphical blocks and structures I have, there's a C and Verilog equivalent. It was never my intent to cause any harm to LabVIEW, because I love it. It's just that outside of these forums, any mention of LabVIEW online is quickly followed by complaints about the pricing, and I wanted to be able to give these people a chance at seeing why it's so good. Giving people the chance to play around with G in their own time, not on someone else's.
    "I can open up Notepad and write any text code I want in there. Why can't I open up Microsoft Paint and do the same with LabVIEW?".
    I read that comment on YouTube somewhere. It really made me laugh.
    I firmly believed that the project could have been that foothold for those users who have yet to discover the benefits of graphical programming but don't have the budget. You'd get more people using G, and more people having success with LabVIEW.
    People on the forums mention a lot about how they wish it wasn't closed source and I thought it'd be a great example to toy with. What I really started to enjoy was the fact that I could start putting my own little tweaks into the application that weren't present in LabVIEW; it could grown into a little  project for users to benchmark their own changes to the IDE. I had things like only being able to make a wire connection between compatible terminals (Which I'd then build on so that it would ghost a potential bridge between initially uncompatible terminals, like a build array between a scalar value and an array input) and tried to get a head start on implementing Altenbach's Synchronizer Bar.
    Anyway, it was a nice run. I thought I'd share this little endeavour with you to see what you think. I know that NI are a great company that really embrace the outer communities but I have to admit that I was a little heartbroken when my pet project didn't get the same kind of response, although in hindsight it was plain silly of me to think otherwise.
    Alex Thomas, University of Manchester School of EEE LabVIEW Ambassador (CLAD)

  • Starting point for Java graphics programming

    Hi,
    I was wondering if anyone knows of good tutorials on the web for learning graphics programming (2D and eventually 3D) in Java. My Java in general is OK, I just need a quick start in the concepts, basic objects etc. involved in graphics rendering.
    Thanks!

    yo

  • I am looking to update to a new imac with intel core processor. I am still old school with a powerbook G4. I want to know if I am going to have to upgrade all graphic programs right away after buying new computer. Thanks.

    I am looking to update to a new imac with intel core processor. I am still old school with a powerbook G4:)
    I want to know if I am going to have to upgrade all graphic programs right away after buying new computer.
    Trying to weigh ALL costs involved.
    Thanks for any advice!!!

    Anything you have that is powerpc code only will not run on a new machine.  OS X 10.8 has no support for powerpc code (universal binary programs should be fine).
    Other than that warning, without knowing exactly what programs you have, and what version you are on, it is hard to say whay will or will not migrate alright.
    you might need to do some web searching and check apps at sites like roaringapps or on the programs Company web site.
    http://roaringapps.com/apps:table

  • Simple graphic program?

    I'm looking for a simple graphic program. Even Elements is overkill (price is fine but learning curve is a bit much for what I need)
    What I want to do is add text and arrows to pics. (pointing out spots)
    And highlight an area (or more preferably dim out the surrounding area)

    Try [Seashore|http://seashore.sourceforge.net/TheSeashoreProject/About.html]. It's pretty simple, and even better, it's free!

  • Accelerate swing graphics

    Hi All
    I'm currently working on a project that includes graphical representation using swing. I got some foreground-objects that move over a background. Unfortunately the performance is not as well as I expected. Perhaps there is a better approach for solving this problem:
    general idea:
    o) I use 3 images/grahics2d-objects of these images:
    one image contains the background picture
    one image contains the foreground picture
    one image is used as a offscreen buffer
    o) I draw the background picture over the offscreen buffer
    o) I draw the foreground picture also over the offscreen buffer
    o) Finally the offscreen buffer is written to the graphics-object
    the graphics are full-screen (1024x768). Is there a better way to do this?
    I would greatly appreciate any kind of help,
    exxion

    If its animation we talking about here. Use threads to do the animation calculation. But dont use too many threads, not wise to over use the power of threads.
    Try the code. Save it as japp.java. Fix the errors. Like image filenames. As i was rushing coding this.
    import java.awt.Graphics;
    import javax.swing.*;
    import java.awt.Image;
    class ImageBackgroundDraw extends Thread {
      JFrame app;
      int x;
      int y;
      public void setXY(int a, int b) {
        x = a;
        y = b;
      public drawImage(JFrame a, Image i) {
        this.app = a;
        x = 0;
        y = 0;
        start();
      public void run() {
        while (true) {
          // Update coordinates of image.
          // I dont know maybe x++;
          // Give it a little sleep we dont want it too fast
          if (x < app.w) x++
          try { sleep(app.sleep_duration); } catch (Exception e) { }
      public void paint(Graphics g) {
         Graphics2D g2 = (Graphics2D)g; 
         g2.drawImage(Image,x,y,app);
    public class japp extends javax.swing.JFrame implements Runnable {
        boolean initG = true;// Allow first Init of buffImgSurface
        private BufferedImage buffImg = null;
        private Graphics2D buffImgSurface;   
        private Thread appThread;
        public int w; // App height;
        public int h; // App width;
        ImageBackgroundDraw[] ibd = new ImageBackgroundDraw[2];
        Image back = new Image("back.gif");
        Image fore= new Image("fore.gif");
        long start = 0;             // Frame start time
        long tick_end_time;         // End frame time
        long tick_duration;         // Time taken to display the frame
        public long sleep_duration; // How long to sleep     
        static final int MIN_SLEEP_TIME = 10, // Min time to sleep for
                         MAX_FPS = 20,        // Max frame rate.  
                         MAX_MS_PER_FRAME=1000/MAX_FPS;// MS per frame
        float fps=0;  // Current frame rate
        public japp() {
          init();
          start();
        public void setWH(int a, int b) {
            w = a;
            h = b;
        public void init() {
          ibd[0] = new ImageBackgroundDraw(this,backgroundImage);
          ibd[1] = new ImageBackgroundDraw(this,ForgroundImage);
          ibd[3] = new ImageBackgroundDraw(this,ForgroundImage);
          ibd[0].setXY(0,0);
          ibd[1].setXY(0,0);
          ibd[1].setXY(0,0);
        public void update(Graphics g) {
          Graphics2D g2 = (Graphics2D)g; 
          // Erase graphics
          buffImgSurface.setBackground(Color.black);
          buffImgSurface.clearRect(0,0,w, h);
          for (int i=0; i < ibd.length; i++) {
            ibd.paint(buffImgSurface);
          g2.drawImage(buffImg,0,0,this);
        public void paint(Graphics g) {
          if (initG == true) {           
                buffImg = (BufferedImage)createImage(w,h);
                buffImgSurface = buffImg.createGraphics();   
                initG = false;
        public void start() {
            if (appThread == null) {
                appThread = new Thread(this, "app");
                appThread.start();
        public void run() {
          // While this thread is active and running keep repeating
          while (true) {
            start = System.currentTimeMillis();
            repaint();
            tick_end_time=System.currentTimeMillis();
            tick_duration=tick_end_time - start;
            if (sleep_duration < MIN_SLEEP_TIME) {
              sleep_duration=MIN_SLEEP_TIME;
            fps = 1000 / (sleep_duration + tick_duration);
    }If you like g.drawString("FPS"+fps,1,10); to show FPS to see if there is any improvement. Otherwise try JNI!(Java Native Interface) Coding and make up your own graphic routines for your applications. You can program your Java API in Assembly with JNI!.

  • Graphical programs not running--need help

    Using win98 platform, textpad, and jdk1.5.0...
    DOS programs run fine, however, graphical applications do not run--it goes to the DOS window and brings up strings of stuff instead.
    When I compile, the error message that generally shows:
    Note: C:\jdk1.5.0\demo\...java uses or overrides a depreciated API
    Note: Recompile with -Xlint: depreciation for details.
    And for applets, this line also existed on a demo:
    Note: C:\jdk1.5.0\demo\applets\Animator\Animator.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint: unchecked for details.
    Anybody know what to do here? I'm just learning java from books, but I need to be able to run java applications in order to get a feel for the code. Help would be appreciated.

    If anyone deems it a necessity, here is an example of simple code that will throw this problem:
    (sorry-under win98 2nd ed.)
    import java.event.*;
    import javax.swing.*;
    class CloseableFrame extends JFrame
    {  public CloseableFrame()
    {  setTitle("Closeable Frame");
    setSize(300,200);
    addWindowListener(new WindowAdaptor()
    {  public void windowClosing(WindowEvent e)
    {  System.exit(0);
    public class CloseableTest
    {  public static void main(String[] args)
    {  JFrame frame = new CloseableFrame();
    frame.show();
    }

  • Graphics Program

    I am thinking about writing a calculator in java. The thing is, I wanted to know if there was some software I could download so that I wouldn't have to type the code for the buttons of the calculator. All I'd do is assemble the calculator (graphically) and the program would generate the code (sort of like FrontPage) is there such a program.

    well, I use forte its very simple and intuitive to use, and have all the components to use from awt to swing. you can also manage the buttons events easily just by 2 clicks. netbeans also have a feature to ass components graphically but is not as complete as forte. Netbeans can be downloaded for free but forte no.

  • [SOLVED] High CPU usage on running any graphical program

    Hi!
    When I run any program like steam and java games which should use lot gpu but they don't. Instead of that programs use 70%-100% of cpu power and almost none gpu. I have newest nvidia drivers but I can't install nvidia-libgl because it doesn't work with bumblebee and whitout bumblebee I can't open steam. I'm running xfce desktop  with xorg11. This bug doesn't appear on flashplayer. Even when I set my graphics to lowest it still uses tons cpu and fps won't make any change (5-10fps).
    Here is log from steam:
    /home/campus/.local/share/Steam/steam.sh: rivi 161: VERSION_ID: sitomaton muuttuja
    /home/campus/.local/share/Steam/steam.sh: rivi 161: VERSION_ID: sitomaton muuttuja
    Running Steam on arch 64-bit
    /home/campus/.local/share/Steam/steam.sh: rivi 161: VERSION_ID: sitomaton muuttuja
    STEAM_RUNTIME is enabled automatically
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/180852:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Unable to read VR Path Registry from /home/campus/.openvr/openvrpaths.vrpath
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    FillInMachineIDInfo took a total of 0 milliseconds
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    PulseAudio connect failed (used only for Mic Volume Control) with error: Access denied
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    ** (steam:5344): WARNING **: Could not initialize NMClient /org/freedesktop/NetworkManager: Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Generating new string page texture 2: 48x256, total string texture memory is 49,15 KB
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Adding licenses for the following package(s): 0, 216, 1679, 1680, 4303, 4772, 11795, 12328, 13054, 13437, 16139, 16222, 16750, 17569, 17641, 17982, 18485, 27035, 27101, 28497, 28987, 29776, 30286, 30879, 31937, 32037, 32889, 44226, 45440, 45705, 54451, 54974, 55143, 55144, 56320, 57406, 58580, 58582, 58584, 58590, 59811, 61119, 61131, 61363, 62024, 64229, 64700, 64701
    roaming config store loaded successfully - 1939 bytes.
    migrating temporary roaming config store
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    Failed to init SteamVR because it isn't installed
    ExecCommandLine: ""/home/campus/.local/share/Steam/ubuntu12_32/steam" "nice" "-n" "19" "wine" "-no-dwrite" "
    System startup time: 13,70 seconds
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    /usr/bin/env: python: Tiedostoa tai hakemistoa ei ole
    Generating new string page texture 69: 256x256, total string texture memory is 311,30 KB
    Generating new string page texture 70: 64x256, total string texture memory is 376,83 KB
    Generating new string page texture 71: 48x256, total string texture memory is 49,15 KB
    Generating new string page texture 72: 128x256, total string texture memory is 507,90 KB
    Generating new string page texture 73: 8x256, total string texture memory is 516,10 KB
    Generating new string page texture 74: 32x256, total string texture memory is 548,86 KB
    [0420/180906:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    [0420/180907:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Generating new string page texture 91: 64x256, total string texture memory is 114,69 KB
    Generating new string page texture 92: 128x256, total string texture memory is 245,76 KB
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Generating new string page texture 93: 24x256, total string texture memory is 573,44 KB
    Generating new string page texture 103: 384x256, total string texture memory is 966,66 KB
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Fontconfig warning: "/home/campus/.local/share/Steam/bin/panorama/etc/fonts/conf.d/41-repl-os-win.conf", line 148: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "/home/campus/.local/share/Steam/bin/panorama/etc/fonts/conf.d/41-repl-os-win.conf", line 160: Having multiple values in <test> isn't supported and may not work as expected
    AL lib: pulseaudio.c:612: Context did not connect: Access denied
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/181047:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Compiled against SDL version 2.0.4 and linked against SDL version 2.0.4
    COpenGLSurface::BInitialize: Current session is
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    DeleteFBOFreeList: Removing 7 FBO objects, total 1
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Warning, someone is using SetHTTPRequestRequiresVerifiedCertificate on Linux, where it doesn't work, and we won't actually verifyAdding activate event to a panel(CommunityMenu) without a tab or selection index, the gamepad and keyboard can't get here.
    Adding activate event to a panel(CommunityGameHub) without a tab or selection index, the gamepad and keyboard can't get here.
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181049:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    HTTP Response for http://store.steampowered.com/api/featuredcategories/?extra=controller,&trailer=1&f=l: 200, 34744
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Fontconfig warning: line 37: unknown element "fontpattern"
    Fontconfig warning: line 38: unknown element "fontpattern"
    Fontconfig warning: line 39: unknown element "fontpattern"
    Fontconfig warning: line 40: unknown element "fontpattern"
    HTTP Response for https://store.steampowered.com/api/featured/?cc=FI&l=english&f=l: 200, 34515
    [0420/181054:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    **** Panel FavoritePages has fill-parent-flow for height, but isn't in a flowing down layout
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/181115:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    DeleteFBOFreeList: Removing 41 FBO objects, total 0
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/181118:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Compiled against SDL version 2.0.4 and linked against SDL version 2.0.4
    COpenGLSurface::BInitialize: Current session is
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Warning, someone is using SetHTTPRequestRequiresVerifiedCertificate on Linux, where it doesn't work, and we won't actually verifyAdding activate event to a panel(CommunityMenu) without a tab or selection index, the gamepad and keyboard can't get here.
    Adding activate event to a panel(CommunityGameHub) without a tab or selection index, the gamepad and keyboard can't get here.
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    HTTP Response for http://store.steampowered.com/api/featuredcategories/?extra=controller,&trailer=1&f=l: 200, 34744
    Fontconfig warning: line 37: unknown element "fontpattern"
    Fontconfig warning: line 38: unknown element "fontpattern"
    Fontconfig warning: line 39: unknown element "fontpattern"
    Fontconfig warning: line 40: unknown element "fontpattern"
    HTTP Response for https://store.steampowered.com/api/featured/?cc=FI&l=english&f=l: 200, 34515
    [0420/181123:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Adding activate event to a panel(ButtonBody) without a tab or selection index, the gamepad and keyboard can't get here.
    HTTP Response for http://cdn.steamcommunity.com/news/newsforapp/v0001/?appid=252490&count=5&maxlength=300&format=json: 200, 3370
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Launching appid 252490
    Starting for app: Rust
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Moving back to: ShowLibraryMostRecent (focus: MostRecentCarousel)
    Removing from backstack: LibraryShowApp (focus: ButtonBody)
    lspci:
    00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller (rev 09)
    00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09)
    00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
    00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
    00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
    00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
    00:1c.5 PCI bridge: Intel Corporation 82801 PCI Bridge (rev c4)
    00:1c.6 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 7 (rev c4)
    00:1c.7 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 8 (rev c4)
    00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
    00:1f.0 ISA bridge: Intel Corporation H77 Express Chipset LPC Controller (rev 04)
    00:1f.2 IDE interface: Intel Corporation 7 Series/C210 Series Chipset Family 4-port SATA Controller [IDE mode] (rev 04)
    00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
    00:1f.5 IDE interface: Intel Corporation 7 Series/C210 Series Chipset Family 2-port SATA Controller [IDE mode] (rev 04)
    01:00.0 VGA compatible controller: NVIDIA Corporation GK104 [GeForce GTX 760] (rev a1)
    01:00.1 Audio device: NVIDIA Corporation GK104 HDMI Audio Controller (rev a1)
    03:00.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 30)
    05:00.0 Ethernet controller: Qualcomm Atheros AR8151 v2.0 Gigabit Ethernet (rev c0)
    06:00.0 USB controller: Etron Technology, Inc. EJ168 USB 3.0 Host Controller (rev 01)
    Thanks!
    Last edited by campus735 (2015-04-21 04:45:10)

    I reinstalled all gpu drivers 64 and 32 bit versions, now steam complains this:
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1605
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1610
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1615
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1620
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1625
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1630
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1635
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1640
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1645
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1650
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1655
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1660
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1665
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1670
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1675
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1680
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1685
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1690
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1695
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1700
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1705
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1710
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1715
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1720
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1725
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1730
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1735
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1740
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1745
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1771
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1777
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1782
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1787
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1792
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1797
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1802
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1807
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1812
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1817
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1822
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1827
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1832
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1837
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1842
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1847
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1852
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1857
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1862
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1867
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1872
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1877
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1882
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1887
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1892
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1897
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1902
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1907
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1912
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1917
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1922
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1927
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1932
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1937
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1942
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1947
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1952
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1957
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1964
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1970
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1975
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1980
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1985
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1990
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1995
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2000
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2005
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2010
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2015
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2020
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2025
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2030
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2035
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2040
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2045
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2050
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2055
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2060
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2065
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2070
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2075
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2080
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2085
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2090
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2095
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2100
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2105
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2110
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2115
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2120
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2125
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2130
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2135
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2140
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2145
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2150
    xerror_handler: X failed, continuing

Maybe you are looking for

  • How can i Open a Captivate 7 HTML 5 Output in IoS / Android

    Greetings, I have been delivering captivate 7 HTML 5 outputs.... but now when i try to open  them in Iphone or Anroid its giving erros. Iphone: No LRS: DATA Cannot be stored Anroid: enable Java script in your browser Can someone guide me (share a ste

  • Installed Itunes 11.0 on Windows 7 64-bit / Itunes store crashes app completely

    Hello      I Installed Itunes 11.0 on Windows 7 64-bit and I can download podcasts and it will sync, but after downloading app updates and clicking done, Itunes crashes immediately when it tries to access the itunes store. If I try to access the Itun

  • OC4J Security fails to authenticate users on a 64 bit solarisx86 machine

    Hi, I am using a database login module to authenticate users. The login module I use is DBTableLoginModule. On 32 bit windows based machine, the module functions perfectly fine. When I deployed my project on a 64 bit solarisx86 machine, users are no

  • USB Drive not being recognized through Parallels

    I cannot get my USB drives to work on the PC side of Parallels. I used to have no problems with this but now get a message that the "device is being used by another process." Is there a way to determine what "process" this would be or is there anothe

  • Redirect due to URL

    HI, Here is my problem. I am using no-ip.info as a redirect to my server. However, it just uses the main IP address to get to my server and not the folder so the folder info has to be typed in. Example is like this tradewars.no-ip.info/tradewars. I w